OpenSSH | Password-less remote login with private/public keys
When accessing remote servers, you often do not want to type out your password ever time. In order to avoid this you need to set up public and private keys. These keys will authenticate you and will allow you to login to remote server with out the need to type in your password. To get started, on your local machine run ssh-keygen command. This command will generate your public and private key files. It will first ask you for the…