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!
Accepted Answer
I found the answer I was modifying ssh_config, not sshd_config
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.