#ubuntu 开启ssh服务
新装的Ubuntu 有时候并没有自动安装ssh服务。
尝试用ssh连接时,会报错:
ssh: connect to host 192.168.1.xx port 22: Connection refused
这时候,需要手动安装。
安装
sudo apt update
sudo apt install openssh-server
开启
安装完后默认启动ssh服务,如果没有的话,可以手动开启。
sudo systemctl enable --now ssh
sudo systemctl start ssh
查看状态
sudo systemctl status ssh