系统配置文件
SSH 终端如果一段时间不操作会断开连接,解决办法是让 SSH 隔一段时间发送一个请求保持连接不断开,修改配置文件:
$ sudo vim /etc/ssh/ssh_config
添加以下配置:
# 每隔 n 秒就向服务器发送一个请求
ServerAliveInterval 60
# 允许超时的次数
ServerAliveCountMax 3
重启 SSH(Mac 可以不用重启):
$ sudo /etc/init.d/ssh restart
IDEA开发工具配置
经过实践发现上面介绍的系统配置对 IDEA 开发工具无效,所以我们还要在开发工具中单独配置: