netty 100w连接进行测试

服务器配置8核 15G

netty服务端 和 客户端连接代码均在同一个服务器上,因为如果通过网络来测试的话,带宽会影响连接数,我这边带宽是5M,导致客户端连接数到达6W多的时候  就上不去了。

netty服务端需要把内核参数修改下,才能支持百万的连接,未修改之前 只能到26w,然后就会报连接超时错误。

1. vi /etc/sysctl.conf
net.ipv4.tcp_syncookies = 1
net.core.somaxconn = 8192  
net.core.rmem_default = 262144  
net.core.wmem_default = 262144  
net.core.rmem_max = 16777216  
net.core.wmem_max = 16777216  
net.ipv4.tcp_rmem = 40960 40960 16777216  
net.ipv4.tcp_wmem = 40960 40960 16777216  
net.ipv4.tcp_mem = 786432 2097152 3145728  
net.ipv4.tcp_max_syn_backlog = 60000  
net.core.netdev_max_backlog = 100000  
net.ipv4.tcp_fin_timeout = 15  
net.ipv4.tcp_tw_reuse = 1  
net.ipv4.tcp_tw_recycle = 1  
net.ipv4.tcp_max_orphans = 1020000
fs.file-max = 1048576
net.ipv4.ip_local_port_range = 1024 65535
net.netfilter.nf_conntrack_max = 1020000
/sbin/sysctl -p

2. 
永久生效 需重启
vi /etc/security/limits.conf

* soft nofile 1020000
* hard nofile 1020000
临时生效
ulimit -SHn 1020000

上面的是在他人的基础上借鉴修改的 原文的话请查看下面的

https://blog.csdn.net/onlyellow/article/details/59533143

上面的102w如果写成100w,我实际的测试中只能达到999940,对了还有一个坑  nofile的最大数不能超过1048579,超过后机子重启就登录不了了(在文件中修改) 这个是个教训。

客户端的代码我一会上传上来,今天就在这记录下,感谢周哥。虽然还是有点小小的问题,哈哈

你可能感兴趣的:(java,netty,netty)