XShell如果经常对CentOS掉线,则VNC肯定连接不上
但是ping CentOS的IP又能ping通,主要原因还是因为sshd的设置问题
#进入ssh目录 cd /etc/ssh #修改sshd_config参数 vim sshd_config #找到以下几个参数并修改成如下结果 PermitRootLogin yes ClientAliveCountMax 60 #ClientAliveCountMax设置成60分钟,运行root登录 #重新载入ssh参数 service sshd reload #重新启动ssh服务 service sshd stop #service sshd restart service sshd start
时间: 2024-10-26 00:33:00