hahahehe

Registered
Mar 11, 2012
2
0
51
cPanel Access Level
Website Owner
i keep having issues with my server stalling for http requests when the server status reads high like 5+.

My host says they cant see any issues with resource spikes. How can i record instances of the server status when it reaches a certain level and the times it does so?

tx.
 

Eric

Well-Known Member
Nov 25, 2007
754
14
143
Texas
cPanel Access Level
Root Administrator
Twitter
Howdy,

If you happen to catch it while it's running, you can always run this little bit.
Code:
netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -n
it will print out the ip's that are using apache the most on the server.

Thanks!