可能没有安装ssh-server 服务器
(1)先检查确认有没有安装ssh-server服务器,输入命令:ps –e|grep ssh
shu@shu:~$ ps -e|grep ssh 2671 ? 00:00:00 sshd 2810 ? 00:00:00 sshd 2889 ? 00:00:00 sshd shu@shu:~$
这是已安装
如未安装,先安装:sudo apt-get install openssh-server
(2)安装了没有开启
开启ssh服务:service sshd start
关闭ssh服务:service sshd stop
重启ssh服务:servcie sshd restart
SSH服务开机自动启动:chkconfigsshd on
取消开机自启动:chkconfig sshd off
开启服务后,检查服务状态:service sshd status
开启ssh服务后,成功连接!
Xshell链接错误:Could notconnect to '192.168.18.128' (port 22): Connection failed.