centos6.6学习笔记:xshell无法链接linux系统

前端之家收集整理的这篇文章主要介绍了centos6.6学习笔记:xshell无法链接linux系统前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

可能是没有安装ssh服务。


解决原因1:

使用netstat,查看是否启动shh服务;
开启ssh服务:

service sshd start

关闭ssh服务:

service sshd stop

重启ssh服务:

servcie sshd restart

SSH服务开机自动启动:

chkconfig sshd on

取消开机自启动:

chkconfig sshd off

开启服务后,检查服务状态:

service sshd status

解决原因2:
安装ssh:

yum install openssh-server
原文链接:https://www.f2er.com/centos/378150.html

猜你在找的CentOS相关文章