My server load average is now got too high , but with top command I only see that high in %id and still don't know why it keep my server CPU too busy like that. Have anybody experienced the same and found solution for it ?
The CPU load (load averages) and CPU percentages differ greatly because they do not measure the same thing. Try running the following command and let us know the output: top -b -n 1 | awk '{if (NR <=7) print; else if ($8 == "D") {print; count++} } END {print "Total status D: "count}' Code (markup):