使用ssh远程登陆服务器之后,过一会儿连接就会被自动断开,频繁的登陆太麻烦,这里把解决方法贴出来。
# 修改服务器ssh自动断开配置
vim /etc/ssh/sshd_config
#客户端每隔n秒向服务发送一个心跳数据(默认为0时1分钟检测一次)
ClientAliveInterval 60
#客户端n次没有心跳,服务器自动断掉连接
ClientAliveCountMax 10
# 重启sshd
systemctl restart sshd.service