查看 php-cgi 进程数
通过命令查看服务器上一共开了多少的 php-cgi 进程
ps -fe |grep "php"|grep -v "grep"|wc -l
实际使用的“FastCGI进程数
netstat -anpo | grep "php-cgi" | wc -l
ps -fe |grep "php"|grep -v "grep"|wc -l
实际使用的“FastCGI进程数
netstat -anpo | grep "php-cgi" | wc -l