Quote:
Originally Posted by zmanea
The following should give you the number of current connections:
netstat -anp | grep httpd | grep -c EST
This should give you the number of threads:
ps aux | grep -v grep | grep -c httpd
|
what is the difference "LISTEN,SYN_RECV,SYN_SENT,ESTABLISHED,ITMED_WAIT,TIME_WAIT...", "netstat -anp | grep httpd | grep -c EST" is the number of current connections, but I think currnet connections is not the number that how many people access apache same time (simultaneously)" ,if I want to know "how many people access apache on the same time (simultaneously)" , what should I do ?