[Security Matters #1]: Introduction to SSH Keys.
If you are a developer, system admin or devops engineer you would have used the ssh command at least once, most people log in by entering their password. But do you know with SSH Keys, you can login passwordlessly, and it is safer than using a password? Let’s understand what SSH is and how to login passwordlessly into the server. What is SSH ? SSH is a network layer protocol which helps us to connect to the remote server. It is the most commonly used program around the world, every developer has used it at least once. To log in into the system via SSH you just need to type ssh user@host-name. ...