Quick Tip: Enable Secure Shell (SSH) Service in Ubuntu 18.04

OpenSSH Service

For Ubuntu beginners, this quick tutorial will show you how to enable the secure shell (SSH) service in Ubuntu 18.04 LTS.

Ubuntu ships with OpenSSH, OpenBSD Secure Shell, in its main archives for secure access from remote machines. It is a suite of security-related network-level utilities based on the SSH protocol.

Install OpenSSH Server in Ubuntu 18.04:

1. Open terminal either via Ctrl+Alt+T keyboard shortcuts or by searching for “terminal” from software launcher.

launch-terminal

2. When terminal opens, run command to install OpenSSH service:

sudo apt-get install openssh-server

Input your password (no visual feedback while typing) when it prompts and hit Enter.

openssh-server-bionic

3. Once installed, SSH starts automatically in background. And you can check its status via command:

sudo systemctl status ssh.service

ssh-status-systemctl

Configure OpenSSH:

To change SSH setting, e.g., listening port, root access, run command:

sudo gedit /etc/ssh/sshd_config

The command opens the configuration file via Gedit (For Ubuntu Server you may use nano instead).

openssh-configuration

And remember to restart SSH service to apply changes:

sudo systemctl restart ssh.service

About ml

ml is a part time stay-at-home dad who've been using Ubuntu Desktop for a few years. He writes in the free time and wishes to share some useful tips with Ubuntu beginners and lovers.

One comment

  1. Thanks for these tips. Without this effort all you have put forth, sure many do it for pay, but we all must eat, none of us would be able to learn! we are indebted!