This article covers a version of CentOS that is no longer supported. If you are currently operating a server running CentOS 6, we highly recommend upgrading or migrating to a supported version of CentOS.
Reason: CentOS 6 reached end of life (EOL) on November 30th, 2020 and no longer receives security patches or updates. For this reason, this guide is no longer maintained.
See Instead:
This guide might still be useful as a reference, but may not work on other CentOS releases. If available, we strongly recommend using a guide written for the version of CentOS you are using.
When you first begin to access your fresh new virtual private server, there are a few early steps you should take to make it more secure. Some of the first tasks can include setting up a new user, providing them with the proper privileges, and configuring SSH.
Once you know your IP address and root password, login as the main user, root.
It is not encouraged to use root on a regular basis, and this tutorial will help you set up an alternative user to login with permanently.
ssh root@123.45.67.890
The terminal will show:
The authenticity of host '69.55.55.20 (69.55.55.20)' can't be established. ECDSA key fingerprint is 79:95:46:1a:ab:37:11:8e:86:54:36:38:bb:3c:fa:c0. Are you sure you want to continue connecting (yes/no)?
Go ahead and type yes, and then enter your root password.
Currently your root password is the default one that was sent to you when you registered your droplet. The first thing to do is change it to one of your choice.
passwd
CentOS is very cautious about the passwords it allows. After you type your password, you may see a BAD PASSWORD notice. You can either set a more complex password or ignore the message—CentOS will not actually stop you from creating a short or simple password, although it will advise against it.
After you have logged in and changed your password, you will not need to login again to your VPS as root. In this step we will make a new user, with a new password, and give them all of the root capabilities.
First, create your user; you can choose any name for your user. Here I’ve suggested Demo
/usr/sbin/adduser demo
Second, create a new user password:
passwd demo
As of yet, only root has all of the administrative capabilities. We are going to give the new user the root privileges.
When you perform any root tasks with the new user, you will need to use the phrase “sudo” before the command. This is a helpful command for 2 reasons: 1) it prevents the user from making any system-destroying mistakes 2) it stores all the commands run with sudo to the file ‘/var/log/secure' which can be reviewed later if needed.
Let’s go ahead and edit the sudo configuration. This can be done through the default editor, which in CentOS is called ‘vi’
/usr/sbin/visudo
Find the section called user privilege specification.
It will look like this:
# User privilege specification root ALL=(ALL) ALL
Under the details of root's privileges, add the following line, granting all the permissions to your new user.
To began typing in vi, press “a”.
demo ALL=(ALL) ALL
Press Escape
, :
, w
, q
, then Enter
to save and exit the file.
Now it’s time to make the server more secure. These steps are optional. They will make the server more secure by making login more difficult.
Open the configuration file
sudo vi /etc/ssh/sshd_config
Find the following sections and change the information where applicable:
Port 25000 Protocol 2 PermitRootLogin no UseDNS no
We’ll take these one by one.
Port: Although port 22 is the default, you can change this to any number between 1025 and 65535. In this example, I am using port 25000. Make sure you make a note of the new port number. You will need it to login in the future, and this change will make it more difficult for unauthorized people to log in.
PermitRootLogin: change this from yes to no to stop future root login. You will now only login as the new user.
Add this line to the bottom of the document, replacing demo with your username:
AllowUsers demo
Save and Exit
Reload SSH, and it will implement the new ports and settings.
service sshd reload
To test the new settings (don’t logout of root yet), open a new terminal window and login into your virtual server as your new user.
Don’t forget to include the new port number.
ssh -p 25000 demo@123.45.67.890
Your prompt should now say:
[demo@yourname ~]$
As you start securing your droplet with SSH, you can continue to improve its security by installing programs, such as Fail2Ban or Deny Hosts, to prevent against brute force attacks on the server.
You can also find the tutorial to install the LAMP stack on the server here or the LEMP stack on the server here.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Here is how to edit the sudo configuration.
This should be added to the tutorial for new users like me. It took me awhile to figure this out!!!
Please see “Using the vi text editor” heading here: http://www.libre-software.net/sudo-on-centos-scientific-linux-and-rhel
i did follow this suggestion then can not login by root but new user is fine. after that, install the apache by ‘sudo yum install httpd’, the following messages shown:
We trust you have received the usual lecture from the local System Administrator. It usually boils down to these three things:
Have i done anything wrong?
Done. It’s all right. Okay! Thanks.
Dear admins @moisey @etel @kamaln7
Could you please add to the tutorial that you have to remove the “#” sign before Port number, Disable root login, Disable UseDNS.
I would not have found out about it if I would not have read the comments.
Thanks.
Before this article, you should read common, useful Linux commands.
i think the last step is wrong,as the service is ssh so it should be:
service ssh reload
sshd is the daemon.
Is it possible to change root name to something else? Like, instead of ‘root’ I want it to be my name.
Thanks… Used it and found it helpful…
Really helpful for those who are first timer like me !!!
Actually, the port number cannot be 65536, just 65535.
@hello: That is correct. /var/www/html/* can be safely owned by your user: <pre>sudo chown -R /var/www/html youruser:youruser</pre>