I’m new to this, when I created my DigitalOcean “project” it allowed me to enter an SSH key, it works great!
Now I want to add an SSH key for another computer, but I don’t see an option anywhere for that :(
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, @jouo
You can follow out tutorial in order to generate a new ssh-key locally on your computer or any other PC and then upload it to your droplet:
https://www.digitalocean.com/community/tutorials/how-to-set-up-ssh-keys--2
ssh-keygen -t rsa
cat ~/.ssh/id_rsa.pub | ssh demo@IPaddress "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys"
Hope this helps!
Regards, Alex