1、查看nginx运行进程数
[root@iZ28j69c9oxZ logs]# ps -ef | grep nginx | wc -l
10
2、查看Web服务器进程连接数
[root@iZ28j69c9oxZ logs]# netstat -antp | grep 80 | grep ESTABLISHED -c
1
3、查看MySQL进程连接数
[root@iZ28j69c9oxZ logs]# ps -ef | grep mysqld -c
[root@iZ28j69c9oxZ logs]# ps -ef | grep nginx | wc -l
10
2、查看Web服务器进程连接数
[root@iZ28j69c9oxZ logs]# netstat -antp | grep 80 | grep ESTABLISHED -c
1
3、查看MySQL进程连接数
[root@iZ28j69c9oxZ logs]# ps -ef | grep mysqld -c
3
4、查看TCP连接状态
[root@iZ28j69c9oxZ logs]# netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
TIME_WAIT 10 等待所有分组死掉
ESTABLISHED 27 当前系统的并发连接数