How to Access Linux VPS Using SSH (No Password)

Written by in linux on 7~11 minutes
How to Access Linux VPS Using SSH (No Password)

VPS (Virtual Private Server) are a type of server that can be easily purchased from hosting providers. VPS are virtual, which means they are not real physical servers. But surprisingly, most of the time you will not even notice it as you see their processors, memory and storage. In addition to that, the main significant difference between traditional hosting servers and VPS servers is the ability to customize everything as you need. No matter whether it is a software stack or hardware resources, you can adjust everything according to your requirements.

This guide will explain how to create a VPS in DigitalOcean and set up an SSH (Secure Shell) connection to access the VPS securely without using a password.

Why Should We Use SSH?

SSH is a highly secure and reliable network communication protocol that can be used to log in to remote systems, execute commands and transfer files back and forth. Among many other useful features, SSH can also be used to securely log in to remote systems with or without using any password. No matter whether you have been using an insecure public WiFi hotspot in a cafe, SSH encrypts the entire communication without any additional effort.

SSH Key Generation

We are using Ubuntu 20.04 LTS for this guide to generate SSH keys, but commands will be the same for all other Linux based distributions as well. Mac OS users will also be able to use the same commands. Windows users can use a GUI client like Putty.

First, open the application launcher by clicking the icon in the left bottom corner.

Ubuntu 20.04 LTS Applications Menu

Search for “terminal” and press enter. You will also be able to open the terminal using the shortcut keys by pressing “Control” + “Alter” + “T” at the same time.

Ubuntu 20.04 LTS Applications Search

Now you will be able to see a terminal window. We are using this terminal to type commands.

Ubuntu 20.04 LTS Terminal

Type the following command and press enter.

ssh-keygen

By default, it will use the key type as RSA. But there are many other key types like “dsa”, “ecdsa”, “ecdsa-sk”, “ed25519”, “ed25519-sk”. You can use something like “ed25519”, which is considered more secure than RSA like mentioned below. But it is optional and it doesn’t mean RSA is insecure or outdated.

ssh-keygen -t ed25519

It will ask for a path and key name, if you need you can mention it or otherwise you can simply press enter to use the default path and name.

Ubuntu 20.04 LTS Terminal ssh-keygen

Again, it will ask for a password. We can protect our private key with a password for additional security. So, even someone stolen your keys, they will not be able to use them without the password. If you don’t need it, simply leave them blank by pressing enter key twice.

If you are new to the Linux terminal, you might be wondering why it doesn’t indicate when you type the password. But you don’t need to worry about it, that is how it is.

Ubuntu 20.04 LTS Terminal ssh-keygen password

After that, SSH key pair will be generated and stored in the “.ssh” directory of your home directory. You can list them by using the “ls” command.

ls ~/.ssh

You will see two files named “id_rsa” and “id_rsa.pub”. “id_rsa” is the private key, DO NOT share the private key(s) with anyone. “id_rsa.pub” is the public key, which is safe to share.

Ubuntu 20.04 LTS Terminal ssh-keygen complete

Type the following command, it will show the content in your public key. Select the content of the key and copy it, we need it later.

Ubuntu-20.04 LTS Terminal ssh-keygen cat public key selected

SSH Key Setup

Even though we used DigitalOcean for this guide, this SSH key setup process will be similar to other VPS hosting providers like Vultr, Linode as well. Go to Settings > Security and press “Add SSH Key”. If you are using Vultr, it is in Account > SSH Keys.

Digitalocean add ssh public key

Now paste the previously copied SSH key in to “SSH key content” box. Also, give it a name.

Digitalocean add ssh public key and name

You will be able to see that the public key has been successfully added to your DigitalOcean account. Remember, currently, this key is in your DigitalOcean account and not in a VPS. We need to add this key to VPS.

Digitalocean add ssh public key added

Create A New Project

DigitalOcean has a feature called “Projects” which will be helpful when you manage multiple projects. Click the “New Project” link in the sidebar to create a new project.

Digitalocean create project

Click “Skip for now”.

Digitalocean create project skip for now

VPS Creation

Now we are going to create the VPS. In DigitalOcean, it is called a “Droplet”.

Digitalocean create droplet

First, you need to select an OS (Operating System) and version you need for the VPS.

Digitalocean create droplet select operating system

There will be multiple hardware configurations, we are using the first option for this guide.

Digitalocean create droplet select price

Select a location for your VPS.

Digitalocean create droplet select region

This step is very important, now you should be able to see the SSH key which we added, previously. Make sure to select it. Otherwise, you will have to manually add it using the terminal.

Digitalocean create droplet select ssh key

Give your VPS a hostname, kind of like a name to identify it.

Digitalocean create droplet hostname

Make sure everything is correct and then press “Create Droplet”.

Digitalocean create droplet submit

It will take few minutes to build the droplet. Meanwhile, you can see the progress.

Digitalocean create droplet progress

Once it is created, click on it to expand it. You will be able to see its IP address. Copy the IP address, we need it to log in to the VPS.

Digitalocean droplet ip v4 address

Log In Using SSH

Again, get back into the terminal of your computer, type the following command. Make sure to replace “your_ip_address_here” with your IP address.

ssh root@your_ip_address_here

When you are connecting to the VPS for the first, you will have to confirm it. Type “yes” and press enter.

Ubuntu 20.04 LTS Terminal ssh ecdsa key fingerprint confirmation

You have successfully logged in to the VPS. In “root@ubuntu-vps:~#” you can see that you have logged in as the “root” account. It is the most powerful and privileged user in your VPS. Now you can install/uninstall software or do whatever you want.

Ubuntu 20.04 LTS Terminal ssh vps connected

Usually, the very first thing that we need to do when we logged in to a newly created VPS is updating its software list. Type following command, it will take few seconds.

apt update

Now type the following command to upgrade all the software installed in the VPS. It will show a list of software that has an update, the total data that need to be download and the required disk space for the upgrade.

apt upgrade

Press enter to continue.

Ubuntu 20.04 LTS Terminal ssh vps apt upgrade

This process can take few minutes and the progress will be displayed.

Ubuntu 20.04 LTS Terminal ssh vps apt upgrade progress

Disconnect The SSH Connection

Once you did what you need, you can terminate the SSH connection by typing “exit” in the terminal.

Ubuntu 20.04 LTS Terminal ssh vps disconnected

Destroy The VPS

If you no longer use the VPS, consider deleting it. Because most hosting providers charge for the time you keep it, including DigitalOcean.

Open the droplet menu and click “Destroy”.

Digitalocean droplet menu

Click “Destroy this Droplet”.

Digitalocean droplet destroy

You will have to confirm the VPS deletion for the last time. After this, all the data will be deleted and will not be able to recover. Make sure that you are destroying the exact droplet.

Digitalocean droplet destroy confirm

Conclusion

In this beginner-friendly guide, we explained the advantages of using a password-less SSH connection to access VPS. Then we created an SSH key pair and a VPS. After that, we used that key pair to successfully log in to the VPS we created without using a password. What do you think about this guide? Did you find something confusing or need to add something to the discussion? Let’s discuss this in the comments section.

Tip! DigitalOcean is giving away $200 free credits to build apps, host websites and explore many other services of their platform. Sign-up now!

Written By

A FOSS guy. Currently, he works as a full stack developer. He writes about Linux and FOSS related content.