linux下查看apache和mysql的链接数命令2008-01-30 17:11# netstat -antp | grep 80 | grep ESTABLISHED -c 或 ps -ef | grep httpd | wc -l查看 apache 进程联接数# ps -axef | grep mysqld -c查看 mysql 进程联接数