Set up SSH keys
Last updated
Last updated
Here is a comprehensive guide on how to set up SSH keys on your server.
Alternatively, you can use Termius, which offers a simpler method as outlined below:
Install Termius and follow this guide to generate an SSH key. Remember to securely store your key, either in an encrypted folder on your computer or on an encrypted USB drive.
Through Termius, you can easily export the SSH key to your host and create an identity as explained in the guide.
Test that you can successfully connect to the server using this SSH key.
If you have multiple nodes or servers, you can use the same SSH key for all of them.
Once logged into your server, run sudo nano /etc/ssh/sshd_config
.
Scroll down using the down arrow until you locate the line # PasswordAuthentication yes
. Uncomment the line (remove #) and set it to no
, like so: PasswordAuthentication no
.
To save the changes, press CTRL+X, then Y, then ENTER.
Restart your SSH service by running sudo systemctl restart ssh
.
Now, you should only be able to access the server via SSH key, and password-based access will no longer work.