The problem is that I don’t know the password and I have to close PuTTy and connect again to my server everytime.
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.
I had the same problem, asking for a password for root. Here is what I did that helped.
Following this tutorial https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04, I added my safe user. I went back into root and followed the same steps.
At the step “Add Public Key to New Remote User”
Where it say mkdir .ssh … instead cd .ssh and ls to see the files that are there.
I continued the steps and when I got to nano .ssh/authorized_keys, I saw that my key was not pasted there.
After I added it, it seemed to work… no more asking for a password.
How are you logging out of PuTTy? You need to make sure to select your SSH key before connecting back.
I would recommend using an SSH Agent such as Pageant so you would no longer have to worry about selecting your SSH key:
The password is the password of the user you are trying to log into root as.
In other words, if after logging out of “root”, you become the user “hhh”, then when you do
and it asks for a password, it’s asking for hhh’s password.
thanks, now I understand