I have been following these instructions for the past few hours and am unable to get password authentication working.
My harddrive failed and I lost my SSH key, so I am going through the web console to try and get access back. I have done the steps below, and even restarted the service. But no matter what it doesn’t seem to take.
trying SSH with -v i get the following: debug1: Authentications that can continue: publickey. IS there something else with these steps that needs to happen?
In order to enable Password level authentication, you can follow these steps.
- Type
sudo nano /etc/ssh/sshd_config
- Change
PasswordAuthentication
from “no” to “yes” and save the file- Open a terminal on your computer and type ssh username@[hostname or IP address] or if on a Windows box use PuTTY for password login making sure authentication parameters aren’t pointing to a private key
- Login with a password
- Type
sudo nano ~/.ssh/authorized_keys
- Paste public key text here and save the file
- Type
sudo nano /etc/ssh/sshd_config
- Change
PasswordAuthentication
from “yes” to “no” and save the file- Restart the ssh service:
sudo systemctl restart sshd
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.
I found the answer I was modifying ssh_config, not sshd_config