I followed this [DO GUIDE](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-16-04
I created a user account and gave it sudo
access.
But when I try to copy my ssh keys using ssh-copy-id user@address
, I get the following error:
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
Permission denied (publickey).
This used to work before. What is the solution?
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.
This question was answered by @jasonjpeters:
If you’re only looking to log into the remote server using SSH Keys on your machine you can copy your
*.pub
key to the remote server renaming it toauthorized_keys
. Once complete as long as the matching key is added to your local key chain Example:
ssh-add ~/.ssh/id_rsa
you should be able to log into the remote server with no passwd.
Click below to sign up and get $100 of credit to try our products over 60 days!
If you’re only looking to log into the remote server using SSH Keys on your machine you can copy your
*.pub
key to the remote server renaming it toauthorized_keys
. Once complete as long as the matching key is added to your local key chain Example:ssh-add ~/.ssh/id_rsa
you should be able to log into the remote server with no passwd.