Setup public key ssh login and troubleshooting
Short note on how to setup ssh to login without a password Generate and copy key ssh-keygen -t rsa Copy key ssh [email protected] mkdir -p .ssh cat .ssh/id_rsa.pub | ssh [email protected] ‘cat >> .ssh/authorized_keys’ Try logging in! If that doesn’t…