Add your SSH key into the server, then next time you don't have to input password when ssh
- Option 1
cat-ing the file to
authorized_keys
:
cat id_rsa.pub | ssh username@hostname ' cat >>.ssh/authorized_keys'
- Option 2 Link
Copy your keys to the target server:
$ ssh-copy-id id@server