Steps to Perform SSH Login Without Password Using ssh-keygen & ssh-copy-id
You can login to a remote Linux server without
entering password in 3 simple steps using ssky-keygen and
ssh-copy-id
ssh-keygen creates the public and private keys. ssh-copy-id copies the local-host’s public key to the remote-host’s authorized_keys file. ssh-copy-id also assigns proper permission to the remote-host’s home, ~/.ssh, and ~/.ssh/authorized_keys.
Step 1: Create public and private keys using
ssh-key-gen on local-host
jsmith@local-host$ ssh-keygen
Step 2: Copy the public key to
remote-host using ssh-copy-id
jsmith@local-host$ ssh-copy-id -i ~/.ssh/id_rsa.pub
remote-host
Note: ssh-copy-id appends the keys to
the remote-host’s .ssh/authorized_key.
Step 3: Login to remote-host without entering the password
jsmith@local-host$ ssh remote-host
No comments:
Post a Comment