Connect via SSH

How to create SSH keys, upload your public key in the control panel and log in to ssh.simply.com with your own SSH client.

You can easily connect via SSH to your webhosting, directly through our Control Panel. This is done under the menu item "Website" -> "SSH access" in our Control Panel.

Connect with your own SSH client

To connect via SSH from your own computer to a Simply.com webhosting, you need to add a public key to the webhosting.

Generate public & private keys

If you don’t already have an SSH key pair, you can generate it with the Linux command

ssh-keygen -t rsa

This will generate both a private and a public key on your computer.
Your public key will be in the file "id_rsa.pub", and your private key will be in the file "id_rsa".

You can also use the Windows programme PuTTYgen.

Upload public key

When you have your public key, go to the Simply.com Control Panel, and under the individual product, from the "Website" menu, select the "SSH access" item. Here you can add your public SSH key. Once this is done you can connect via SSH to your webhosting.

Connect with SSH

You need to connect via SSH to ssh.simply.com, using the same username as for, e.g., FTP.
To be able to log in with SSH, you must have uploaded a public key.

Connect with PuTTY (Windows)

If you want to connect with PuTTY you can use Pageant to provide your private key when you connect.

Error messages during login

Error: Permission denied (publickey)

This error occurs when you do not send your private key during login. Check the configuration of your SSH client.
Make sure you are sending the key.

Error: No hostkey for host

This means that your SSH client is missing the server’s host key in known_hosts. Add it with:

ssh-keyscan -t rsa,ecdsa,ed25519 ssh.simply.com >> ~/.ssh/known_hosts

Article from the support category: PHP