生产服务器上优化终端超时—自动断开连接的解决方法
作者:互联网
操作系统:CentOS Linux release 7.9
工具:SecureCRT 7
工作要求:终端**时间未响应操作时,即超过该时间将会自动断开远程连接。
方法一:
[root@Linux /]#echo "export TMOUT=900" >> /etc/profile
[root@Linux /]# source /etc/profile
一般上述方法即可解决问题,但有时还要通过下面方法加固一下才能彻底解决连接超时的问题。
方法二:
[root@Linux /]# vi /etc/ssh/sshd_config
找到以下两项配置:
#ClientAliveInterval 0
#ClientAliveCountMax 3
修改为:
ClientAliveInterval 60
ClientAliveCountMax 900
1、客户端每隔60秒向服务发送一个心跳数据
2、客户端900秒没有响应后,服务器将自动与终端断开连接
3、重启sshd服务
[root@Linux /]# systemctl restart sshd
标签:断开连接,sshd,方法,900,etc,Linux,服务器,超时,root 来源: https://blog.51cto.com/sky9896/2884320