The Plesk control panel does not have graphical tools to manage ssh keys. This article provides step-by-step instruction to create and manage ssh keys from the command line.
The following steps show how to create an SSH key on your local computer and upload the public key to the server.
user@computer ~$ cd ~/.ssh
If the .ssh directory does not exist, you can create it with this command:
user@computer ~$ mkdir ~/.ssh
When you have changed to the .ssh directory, type this command, replacing mykey with a file name of your choice.
user@computer ~$ ssh-keygen -t rsa -b 2048 -f mykey
The command will prompt for a passphrase during creation of the key. Adding a passphrase makes the key more secure but keys with passphrases cannot be used for automation. When the command completes, a public key named mykey.pub and a private key named mykey will be created in the .ssh directory.
Copy the public key to your server using the ssh-copy-id command. Replace mykey.pub with the name you chose in the previous step. Replace user with your username on the server and replace example.com with your domain name or the IP address of the server.
user@computer ~$ ssh-copy-id -i mykey.pub -p 7822 user@example.com
You will be prompted for your password to log in. The public key will be copied to the ~/.ssh/authorized_keys file on the server.
Once the file has been copied, you should be able to login using the following command without typing your password: Replace mykey with the name of your key file, replace user with your username on the server and replace example.com with your domain name or the IP address of the server.
user@computer ~$ ssh -i ~/.ssh/mykey -p 7822 user@example.com
You may want to allow others to access your account or provide access to a remote service that provides their own public key. The public key may be provided as a file or you may need to cut and paste it into a file. If the file is created by pasting the key into a file, be sure there are no extra characters before or after the key. The key must be appended to the authorized_keys file on the server. To append a key, follow these steps.
user@computer ~$ ssh-copy-id -i somekey.pub -p 7822 user@example.com
Subscribe to receive weekly cutting edge tips, strategies, and news you need to grow your web business.
No charge. Unsubscribe anytime.
Did you find this article helpful? Then you'll love our support. Experience the A2 Hosting difference today and get a pre-secured, pre-optimized website. Check out our web hosting plans today.
We use cookies to personalize the website for you and to analyze the use of our website. You consent to this by clicking on "I consent" or by continuing your use of this website. Further information about cookies can be found in our Privacy Policy.