Ubuntu 19.10 enables ssh service (detailed process)

Ubuntu 19.10 enables ssh service (detailed process)

It took me more than an hour to open ssh in Ubuntu. The main reason was that the tutorial steps I read at the beginning were not detailed. Then I turned on a host worth more than 10,000 yuan, and the startup and shutdown were quite slow. I recorded the detailed steps here for your convenience in future reference.

The first step is to check whether ssh is enabled.

sudo ps -e | grep ssh

If the final return is sshd, it proves that ssh has been enabled and jump to step 4


Step 2, if there is no display, try to enable the ssh service

sudo /etc/init.d/ssh start

If the command is not found, it means that the ssh service is not installed.

The third step is to install the openssh service and check whether the service is enabled.

sudo apt-get install openssh-server
sudo ps -e | grep ssh

If not, run the enable command

sudo /etc/init.d/ssh start

Step 4: Check if the firewall has port 20 open (SSH opens port 22 by default, if you need to modify it, see step 5)

netstat -an | grep 22
# or ufw status

If not, open port 22

ufw allow 22

Step 5: Change the ssh port (optional)

sudo vi /etc/ssh/sshd_config

ssh restart

service sshd restart

Step 6: Firewall takes effect and starts up

ufw enable

Step 7: Check the IP address, remember the IP address, and set a static IP

ifconfig 


Set static ip:
Open vim /etc/netplan/ and check. I have seen other people's articles use vim /etc/netplan/01-netcfg.yaml, but I use 50-cloud-init.yaml, so they may not be the same.

cd /etc/netplan/
ls
vim 50-cloud-init.yaml

Set to

network:
  ethernets:
    enp3s0:
      dhcp4: false
      addresses: [192.168.101.135/24]
      gateway4: 192.168.101.1
      nameservers:
          addresses: [192.168.101.1, 8.8.8.8]
    enp4s0:
      dhcp4: true
  version: 2

Next, ping the computer to see if it works. If not, check whether it is in the same subnet and gateway. Then download xshell or putty. Remember to enter the port correctly.

Optional: Set up root login to ssh

sudo vim /etc/ssh/sshd_config

Change PermitRootLogin prohibit-password to PermitRootLogin yes
Remember to restart ssh

sudo systemctl restart sshd

Then the next step is to connect to the computer using xshell or putty, remember to select port 22, if you have not changed it

This is the end of this article about how to enable ssh service in Ubuntu 19.10 (detailed process). For more information about how to enable ssh in Ubuntu 19.10, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed installation and use of SSH in Ubuntu environment
  • Detailed installation and configuration of SSH for remote login to Ubuntu server
  • How to configure SSH passwordless authentication in Ubuntu
  • How to check whether the ssh service is installed or started in Ubuntu
  • Detailed explanation of Ubuntu 14.04 bridge network settings and SSH login
  • Detailed explanation of the installation and login of ssh service under Ubuntu (ssh remote login)
  • Ubuntu 16.04 server configuration ssh password-free login
  • Detailed tutorial on installing openssh server on ubuntu

<<:  JavaScript setTimeout and setTimeinterval use cases explained

>>:  mysql root user cannot be authorized and solve the problem of navicat remote authorization prompt 1044

Recommend

jQuery implements HTML element hiding and display

Let's imitate Taobao's function of displa...

iframe parameters with instructions and examples

<iframe src=”test.jsp” width=”100″ height=”50″...

Introduction to /etc/my.cnf parameters in MySQL 5.7

Below are some common parameters of /etc/my.cnf o...

How to import and export Docker images

This article introduces the import and export of ...

How to install Tomcat-8.5.39 on centos7.6

Here is how to install Tomcat-8.5.39 on centos7.6...

In-depth understanding of the use of CSS clear:both

clear:both is used to清除浮動This is the impression I...

Execute initialization sql when docker mysql starts

1. Pull the Mysql image docker pull mysql:5.7 2. ...

How to clear default styles and set common styles in CSS

CSS Clear Default Styles The usual clear default ...

Eight hook functions in the Vue life cycle camera

Table of contents 1. beforeCreate and created fun...

HTML form component example code

HTML forms are used to collect different types of...

A Brief Analysis of the Differences between “:=” and “=” in MySQL

= Only when setting and updating does it have the...

Example code for implementing simple ListViews effect in html

HTML to achieve simple ListViews effect Result: c...