An SSH Key allows you to log into your server without needing a password. SSH Keys can be automatically added to servers during the installation process.
The simplest way to create SSH key on Windows is to use PuTTYgen.
authorized_keys
file”. This is what you would need to enter into the control panel to use the SSH key.The tools to create and use SSH are standard, and should be present on most Linux distributions. With the following commands, you can generate ssh key.
ssh-keygen -t rsa
. For a more secure 4096-bit key, run: ssh-keygen -t rsa -b 4096
cat ~/.ssh/id_rsa.pub
– this will give you the key in the proper format to paste into the control panel.~/.ssh/id_rsa
file. This cannot be recovered if it is lost.user@x.x.x.x
) of the destination server under the “Host Name” field on the “Session” category..ppk
) that you generated earlier with PuTTYgen.Ctrl+d
.which ssh
). If a client is not installed, you will need to install one.ssh -i /path/to/id_rsa user@x.x.x.x
Ctrl+d
.