Linux Ubuntu系统kangle端口运行一会后会丢失ipv4监听 ulimit限制
Linux Ubuntu系统kangle端口运行一会后会丢失ipv4监听 ulimit限制kangle ipv4端口丢失问题已经确认是ulimit,对于Ubuntu系统使用传统的修改方式不起作用
*对root不在起效果,所以要单独设置个root
ulimit -n 1048576
echo "root soft nofile 1048576" >> /etc/security/limits.conf
echo "root hard nofile 1048576" >> /etc/security/limits.conf
echo "* soft nofile 1048576" >> /etc/security/limits.conf
echo "* hard nofile 1048576" >> /etc/security/limits.conf
注:现在ipv4端口就正常了,不会丢失监听了,3311重启不管用,需要ssh上关闭进程重启来赋予连接数新值
估计是1024触发限制后,导致无法写入配置文件
3.6上面没这个检测,直接丢端口
3.5旧版本提示红字无法写入 警告:程序没有权限写入文件/vhs/kangle//etc/config.xml
页:
[1]