Centos-6.6 Nginx并发连接数和TCP连接状态查看

系统+安全 Liemer_Lius 1480℃ 0评论

1、查看Nginx进程数量

[root@Master ~]# ps aux |grep nginx |grep -v 'grep' -c
3

2、查看服务器处于建立连接状态的web连接数量

[root@Master ~]# netstat -antp |grep "80" |grep 'ESTABLISHED' -c
1

3、查看TCP的各类状态连接数量

[root@iZ28j69c9oxZ logs]# netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
TIME_WAIT 10       // 等待所有分组死掉 
ESTABLISHED 27     // 当前系统的并发连接数

 

转载请注明:liutianfeng.com » Centos-6.6 Nginx并发连接数和TCP连接状态查看

喜欢 (0)

发表回复