xshell6远程不上centos7

1.检查防火墙是否关闭

    firewall-cmd --state(查状态)

    systemctl stop firewalld.service(停止防火墙服务)

    systemctl disable firewalld.service(禁止firewall开机启动)

2.未启ssh服务

    rm -r /etc/ssh/ssh*key 

    systemctl restart sshd.service

    注意:重启sshd.service可能报openssh-daemon 已停错误(sshd -t 查看出错原因,提示服务无法加载ssh*key 推测估计是权限问题)

    (输入/etc/init.d/sshd start出现
     启动 sshd:/var/empty/sshd must be owned by root and not group or world-writable

     这个是权限的问题

     可采取以下解决

     方法一:

                     chown -R root.root /var/empty/sshd

                chmod 744 /var/empty/sshd

                systemctl restart sshd.service

          方法二:

                      chmod 600 /etc/ssh/ssh*key

                      systemctl restart sshd.service

       )

你可能感兴趣的:(linux)