centos7 ssh升级后服务不稳定不断重启,查看sshd服务状态为activating(start)的解决办法

现象:

         centos7升级ssh7.4到8.1版本后,ssh连接不稳定,时断时续,systemctl  status  sshd查看服务状态为activating(start),查看/var/log/message里不断提示sshd.service holdoff time over,scheduling restart 

原因: 

        /usr/lib/systemd/system/sshd.service  与systemd不兼容

处理办法:

        mv  /usr/lib/systemd/system/sshd.service  /etc/ssh_bak/
               systemctl daemon-reload 

 重启前看下:

       sshd -t  检查下配置有没有问题

       /var/log/message里sshd有没有继续报错,ssh -v  root@ip检查下能否正常连接

  以上正常后systemctl restart sshd

你可能感兴趣的:(运维)