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 // 当前系统的并发连接数
发表回复
要发表评论,您必须先登录。