How to set up ssh Ubuntu?

Setting Up SSH on Ubuntu: A Step-by-Step Guide

Introduction

Setting up SSH (Secure Shell) on Ubuntu is a crucial step in securing your remote access to your Ubuntu server. SSH is a secure protocol that allows you to connect to your Ubuntu server from anywhere in the world, using a secure password or public key authentication. In this article, we will guide you through the process of setting up SSH on Ubuntu.

Prerequisites

Before you start, make sure you have the following:

  • Ubuntu 18.04 or later (the latest version of Ubuntu is recommended)
  • A user account on your Ubuntu server
  • A password for the user account
  • A public key (optional)

Step 1: Install the SSH Server

To set up SSH on Ubuntu, you need to install the SSH server. You can do this by running the following command:

sudo apt-get update
sudo apt-get install openssh-server

Step 2: Configure the SSH Server

Once the SSH server is installed, you need to configure it to start automatically on boot. You can do this by running the following command:

sudo systemctl enable ssh

Step 3: Generate a Public Key

To use SSH keys for authentication, you need to generate a public key. You can do this by running the following command:

ssh-keygen -t rsa -b 4096

This will generate a private key and a public key in the .ssh directory of your user account.

Step 4: Add the Public Key to the SSH Server

To allow users to connect to your SSH server using their public key, you need to add the public key to the SSH server. You can do this by running the following command:

sudo nano /etc/ssh/ssh_config

Add the following line to the end of the file:

Host *       publickey:ssh-rsa <public_key>

Replace <public_key> with the path to your public key file.

Step 5: Set the SSH Server to Start Automatically

To ensure that the SSH server starts automatically on boot, you need to add the following line to the /etc/systemd/system/ssh.service file:

sudo nano /etc/systemd/system/ssh.service

Add the following line to the end of the file:

[Unit]
Description=SSH Server
After=network.target

[Service]
User=<username>
ExecStart=/usr/sbin/sshd
Restart=always

[Install]
WantedBy=multi-user.target

Replace <username> with the name of the user account that will be using the SSH server.

Step 6: Reload the Systemd Configuration

To apply the changes, you need to reload the system configuration. You can do this by running the following command:

sudo systemctl daemon-reload

Step 7: Start the SSH Server

To start the SSH server, you need to run the following command:

sudo systemctl start ssh

Step 8: Enable the SSH Server to Start Automatically

To ensure that the SSH server starts automatically on boot, you need to enable it to start automatically. You can do this by running the following command:

sudo systemctl enable ssh

Step 9: Test the SSH Connection

To test the SSH connection, you can use the following command:

ssh <username>@<server_ip>

Replace <username> with the name of the user account that will be using the SSH server, <server_ip> with the IP address of the Ubuntu server, and <public_key> with the path to your public key file.

Troubleshooting Tips

  • If you encounter any issues with the SSH connection, check the system logs for errors.
  • If you are using a public key, make sure that the public key is correctly formatted and that the private key is not corrupted.
  • If you are using a private key, make sure that the private key is correctly formatted and that the public key is not corrupted.

Conclusion

Setting up SSH on Ubuntu is a straightforward process that requires only a few steps. By following these steps, you can secure your remote access to your Ubuntu server using SSH. Remember to regularly update your system and configuration to ensure that your SSH connection remains secure.

Additional Resources

Unlock the Future: Watch Our Essential Tech Videos!


Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top