life_of_pi

Scripts and other stuff around my Raspberry Pi Cluster for Distributed Programming and Networking with various Languages, e.g. Python, Java, etc

View the Project on GitHub cinhtau/life_of_pi

SSH

For remote work use public key authentication. Therefore we have to initially permit root access with password.

sudo nano /etc/ssh/sshd_config

Add PermitRootLogin yes and reboot.

Copy public key to the Raspberry Pi

cat ~/.ssh/id_rsa.pub | ssh root@alpha "mkdir .ssh && cat - >> ~/.ssh/authorized_keys"

Test ssh login

ssh root@alpha

Change sshd_config

PermitRootLogin prohibit-password
PubkeyAuthentication yes