#如果没有发现ssh进程说明ssh没有启动
[email protected]:~$ ps -e | grep ssh
#在服务端启动服务
[email protected]:~$ service ssh start
ssh: unrecognized service
#在本机远程到服务端
bogon:~ macname$ ssh [email protected]
ssh: connect to host 192.168.1.108 port 22: Connection refused
#出现以上错误,是因为没有安装ssh,执行以下命令安装
sudo apt-get install openssh-server
主机要能和Ubuntu互ping
原文地址:https://www.cnblogs.com/y4247464/p/12262320.html
时间: 2024-10-01 22:31:19