ssh无法连接centos7怎么办
首先切换到root用户,执行如下命令查看本机是否安装了sshd。
rpm -qa | grep ssh
如果没有安装,则需要执行如下命令进行安装。
yum install openssh-server
service sshd restart
命令:service sshd start 启动服务 | 命令:service sshd stop 停止服务
重启后可输入:netstat -antp | grep sshd 查看是否启动22端口(可略)
最后设置开机自动启动该服务
输入如下命令即可
chkconfig sshd on
注:若是chkconfig sshd off则禁止SSH开机启动。
推荐教程:centos教程
以上就是ssh无法连接centos7怎么办的详细内容,更多请关注www.sxiaw.com其它相关文章!