使用xshell连接Ubuntu出现 Could not connect to 'xxxxx' (port 22)
使用xshell连接Ubuntu时候出现无法连接到xxx
看这个报错一开始以为是端口问题。于是开启了22的端口
firewall-cmd --zone=public --add-port=22/tcp --permanent
然后再使用的时候依然报错。
zheng@ubuntu:~$ ps -e|grep ssh 5548 ? 00:00:00 ssh-agent 查询是有一个agent的端 所以需要安装服务器端 sudo apt-get install openssh-server 接下来再查一下 zheng@ubuntu:~$ ps -e|grep ssh 5548 ? 00:00:00 ssh-agent 9744 ? 00:00:00 sshd 这样就可以了!
后来通过查询才发现是因为我没有安装ssh的服务器端。