Answers for "copy remote ssh key mac"

6

copy ssh key to remote server

ssh-copy-id -i ~/.ssh/mykey.pub user@host
Posted by: Guest on May-13-2020
0

copy remote ssh key mac

cat ~/.ssh/id_rsa.pub | ssh <user>@<hostname> 'cat >> .ssh/authorized_keys && echo "Public key successfully copied"'
Posted by: Guest on December-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language