As I was following this tutorial (https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-20-04), I created a new user account at step 2, including an account password. Then, I successfully added sudo privileges to this user account (step 3), set up the basic firewall and enables external access for my regular user (step 5).
So far, so good.
Now, when I externally login using ssh user@ipaddress, Ubuntu 20.04 asks for my passphrase, but it permits only the passphrase for my root user. Isn’t that strange? What if I add another user that is not me. He or she will have to know the passphrase for my root user account. That is not really save.
Please let me know what is good practice here.
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.
Hi @KatoVonKatz,
I think, at Step 2 — Creating a New User, you entered your root password instead of a new password for your regular user. You should set a new password for your regular user as following:
Log in your regular user via SSH:
- ssh user@ipaddress
Change the password:
- passwd
Enter your root password first, then enter a new password twice when prompted.
Then log out:
- exit
Finally, log in again with the new password:
- ssh user@ipaddress
Hi @KatoVonKatz,
Following the tutorial lets, you create a user with sudo privileges so that you don’t need to use root for everything.
If you wish to have a user that’s being accessed by another person, you shouldn’t rsync your SSH key to the newly created folder .ssh user’s folder but rather use the key of the person that’s going to use this user.
Regards, KFSys
Hmm did you restart SSH service yet or reboot yet