LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   VPS has load 200, httpd load no activity, netstat nothing (https://www.linuxquestions.org/questions/linux-networking-3/vps-has-load-200-httpd-load-no-activity-netstat-nothing-4175486469/)

postcd 12-01-2013 02:38 PM

VPS has load 200, httpd load no activity, netstat nothing
 
Hello, on my hostserver i see one VPS of mine got load of 200.00 and netstat nothing (not a single blank line on netstat command) after some time, netstat started showing connections, but i see no excessive IP connections.

tail -f /var/log/httpd/access_log shows no activity
/var/log/messages ; secure, no activity

Please which files, commands should i do to reveal cause of the load?

syg00 12-01-2013 04:08 PM

Try this - lists all tasks in uninterruptible sleep (these add to the loadavg). Usually waiting on I/O, but http sometimes generates heaps of children and forgets about them
Code:

top -b -n 1 | awk '{if (NR <=7) print; else if ($8 == "D") {print; count++} } END {print "Total status D: "count}'


All times are GMT -5. The time now is 05:38 PM.