Yes,It's mE.

Hi,I am here.

How to Remote Ssh Server Without Password

| Comments

1.create ras key by using ssh-keygen

ssh-keygen -t rsa

this operation will generate two keys in your system.

2.copy it to your ssh server

cat ~/.ssh/id_rsa.pub |ssh username@ssh_server_host 'cat >> ~/.ssh/authorized_keys'

3.now you can remote to your server without password.

Comments