其他分享
首页 > 其他分享> > ssh长时间连接不上

ssh长时间连接不上

作者:互联网

一、情景描述

从一个节点node01跳到另一个节点node02,长时间连接不上。

二、解决方法

1.修改节点node02的配置文件/etc/ssh/sshd_config。
#UseDNS yes
UseDNS no

#GSSAPIAuthentication no
GSSAPIAuthentication yes

2.重启sshd服务

杀进程:ps -ef | grep sshd | grep -v grep | awk '{print $2}' | xargs kill -9

重启:/usr/sbin/sshd -D

再次尝试从节点node01跳转即可秒登录。

 

标签:node02,sshd,node01,grep,不上,ssh,长时间,节点
来源: https://www.cnblogs.com/daisyyang/p/16253772.html