Open zesttec opened 3 years ago
Ref: https://netbeez.net/blog/connect-to-ssh-without-password/
Copy the public key to the remote server: append it to .ssh/authorized_keys if authorized_keys file doesn't exist, create one.
.ssh/authorized_keys
authorized_keys
cat .ssh/id_rsa.pub | ssh user_name@destination ‘cat >> .ssh/authorized_keys’
Ref: https://netbeez.net/blog/connect-to-ssh-without-password/
Copy the public key to the remote server: append it to
.ssh/authorized_keys
ifauthorized_keys
file doesn't exist, create one.cat .ssh/id_rsa.pub | ssh user_name@destination ‘cat >> .ssh/authorized_keys’