I restored my droplet to downgrade from 16.04 to 14.04. Ever since, my SSH keys are not working. I tried removing and recreating without success. I manually added the same new key on my local machine, my droplet, and updated the key via the control panel. What am I missing, or how do I clear everything out and recreate the keys? Thanks.
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!
I would first check SSH config, it could be that somehow is wrong there and it’s ignoring keys. Open config file with you favorite editor:
- sudo nano /etc/ssh/sshd_config
Now verify that following settings are as this:
PubkeyAuthentication yes
ChallengeResponseAuthentication no
Make sure it is set as above and it’s uncommented (doesn’t have #
in beginning of line).
If you changed something make sure you restart SSH:
- sudo service ssh restart
If you want to clean up all keys, you can delete ~/.ssh/authorized_keys
, than you can try again. I recommend you to copy keys with ssh-copy-id
if that’s possible.
This tutorial can be a good reading and I recommend it.
If you do manual way, you can verify file permissions:
- sudo chmod 700 ~/.ssh
- sudo chmod 600 .ssh/authorized_keys