我正在为websockets开发一个小型测试客户端.我正在使用Ubuntu 11.04.我读过了
https://stackoverflow.com/questions/410616/increasing-the-maximum-number-of-tcp-ip-connections-in-linux我完成了以下工作
https://stackoverflow.com/questions/410616/increasing-the-maximum-number-of-tcp-ip-connections-in-linux我完成了以下工作
sudo sysctl -w net.ipv4.tcp_fin_timeout=10 sysctl -w net.ipv4.ip_local_port_range="1024 65535"
据我所知,这些是针对入站连接而不是出站连接.
当我打字
ulimit -n unlimited
我的客户端和服务器在不同的盒子上运行即使有上述所有内容,我也无法从一个盒子中穿过1000个连接.如果有不同的提示,请告诉我
回答
我通过输入ulimit -a来计算它,它显示了所有内核限制.
ulimit -n unlimited
而
ulimit -a
将nofile的值返回为1024.我在格式中设置了/etc/security/limits.conffile中的限制
<user> soft nofile 8192 <user> hard nofile 65000
并且事情对用户有效