Passwordless SSH'ing (Remote Management) w/ Nodegrid
- On the Nodegrid, under the "root" user's ( ~/.ssh directory ), create a file called "authorized_keys" and change the permissions.
- # touch ~/.ssh/authorized_keys
- # chmod 600 ~/.ssh/authorized_keys
- On the remote server, create an ssh key for the user account that you want to use with passwordless login.
- # ssh-keygen -t rsa -b 2048 -f ~/.ssh/id_rsa -q -P ""
- # ssh-copy-id -i ~/.ssh/id_rsa.pub root@<nodegrid's IP address>