Hello,
I recently regenerated my public/private keys for SSH access to all of my droplets. I successfully updated the public key on all accounts except for one. I used the cat ~/.ssh/id_rsa.pub
command to display the public key in Terminal and copied it to the Settings > Security > SSH Keys section on my client’s account. After doing that, I tried to login using SSH via the Terminal, but Permission denied (publickey) is returned. I have reviewed many related issues on Stack Overflow and other tech help websites, but nothing has helped resolve my issue.
Can someone help me out with resolving this issue?
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.
Hello,
Adding the SSH key to the
Settings > Security > SSH Keys
section does not actually add the key to any of the existing Droplets.In order to add the SSH key to an existing Droplet, you need to access it first via SSH and add the public key to the
~/.ssh/authorized_keys
file on each server.If you don’t have access to any of the existing Droplets, you can follow the steps here on how to recover your access:
https://docs.digitalocean.com/products/droplets/resources/lost-ssh-key/
Hope that this helps!
Best,
Bobby
One possible issue:
Solution for this issue:
chmod 600 /path/to/file
Another possible issue:
Solution(s) for this issue:
dos2unix /path/to/file
edit file and check for extra newlines that shouldn’t be there (even after running
dos2unix
Want to learn more? Join the DigitalOcean Community!
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Sign up now