1、登录服务器后
[root@fatong~]# cd /etc/ssh/
[root@fatong ssh]# vim sshd_config
找到 ClientAliveInterval 0和ClientAliveCountMax 3
将注释符号("#")去掉,
将ClientAliveInterval对应的0改成3600,保存。
ClientAliveInterval 指定了服务器端向客户端请求消息 的时间间隔, 默认是0, 不发送.
ClientAliveInterval 3600每1个小时发送一次, 然后客户端响应, 保持长连接.
ClientAliveCountMax, 使用默认值3,
ClientAliveCountMax 服务器发出请求后客户端没有响应的次数达到 3, 就自动断开.
2、重启ssh服务
service sshd restart
如果Redirecting to /bin/systemctl restart sshd.service
在云服务器 ECS Linux CentOS 7 下重启服务不再通过 service 操作,而是通过 systemctl 操作。 操作说明如下:
1. 查看 sshd 服务是否启动:
看到上述信息就可以确定是启动了。
2. 如果没有启动,则需要启动该服务:
systemctl start sshd.service
3. 重启 sshd 服务:
systemctl restart sshd.service
4. 设置服务开启自启:
systemctl enable sshd.service