查看http进程数 [root@localhost conf]# ps -ef|grep httpd|wc -l 333 统计连接数状态: [root@localhost conf]# netstat -n|awk '/^tcp/{++S[$NF]} END {for(a in S) print a,S[a]}'LAST_ACK 173SYN_RECV 35CLOSE_WAIT 159ESTABLISHED 152FIN_WAIT1 29FIN_WAIT2 10CLOSING 39TIME_WAIT 103 |
|