I know it’s a recommended security practice to disable directly logging in as root, and I have another account on the system that can use the “sudo” command when needed, but I have a concern about availability. If I do this and for some reason become unable to log in with the other account, will the recovery console and/or resetting the root password still work?
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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi @swadams,
No, the recovery console and resetting the password work only for your root user. Having said that, through your root user you can enter your other newly created user.
Think of the root user as the Administrator account in windows. From this account, you can do anything. First, in order to enter the newly created account, let’s say it’s name is exampleuser, you need to add your SSH key to it. In the exampleuser home directory, you need to create a .ssh folder and then a file called authorized_keys. In that file you need to add your id_rsa.pub key as a line.
Now, if you want to access this user - exampleuser through root, it’s really easy, you need to enter into your root user and type in:
This will switch the user to exampleuser for you.