查看Linux的TCP连接数的方法如下:
统计80端口连接数
shell
netstat -nat|grep -i "80"|wc -l
统计httpd协议连接数
shell
ps -ef|grep httpd|wc -l
统计已连接上的,状态为"established"的TCP连接数
shell
netstat -na|grep ESTABLISHED|wc -l
统计某个IP地址连接最多的TCP连接数
shell
netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r
调整方式
临时生效
shell
sysctl -w net.core.somaxconn=10240
永久生效
shell
echo "net.core.somaxconn = 10240" >>/etc/sysctl.conf
sysctl -p