I have a system that is running into problems with high load, however, even when I shut down everything that could be loading the system, the load continues to rise. I can't see anything that is causing the load. Any ideas?
08:36:06 up 1 day, 10:57, 3 users, load average: 19.98, 19.30, 17.29 90 processes: 75 sleeping, 2 running, 13 zombie, 0 stopped CPU states: cpu user nice system irq softirq iowait idle total 0.1% 0.0% 0.0% 0.1% 0.0% 0.0% 99.6% Mem: 511916k av, 317756k used, 194160k free, 0k shrd, 35040k buff 208896k actv, 67280k in_d, 10488k in_c Swap: 2048276k av, 5872k used, 2042404k free 172064k cached
On Mon, 2005-12-19 at 07:37, Chris Mason (Lists) wrote:
I have a system that is running into problems with high load, however, even when I shut down everything that could be loading the system, the load continues to rise. I can't see anything that is causing the load. Any ideas?
08:36:06 up 1 day, 10:57, 3 users, load average: 19.98, 19.30, 17.29 90 processes: 75 sleeping, 2 running, 13 zombie, 0 stopped CPU states: cpu user nice system irq softirq iowait idle total 0.1% 0.0% 0.0% 0.1% 0.0% 0.0% 99.6% Mem: 511916k av, 317756k used, 194160k free, 0k shrd, 35040k buff 208896k actv, 67280k in_d, 10488k in_c Swap: 2048276k av, 5872k used, 2042404k free 172064k cached
Have you tried running top to see which processes are ready to run?
Have you tried running top to see which processes are ready to run?
Yes, top is not showing me any real informaiton and the server is responsive, but the MTA shuts down because it sees such high load. It seems to be fake load, locked up processes. I see a lot of vsftpd processes using ps -x and I cannot kill them. It's very strange. I have several dedicated servers that get hammered all day but I have never seen this before. Even shuting down httpd and mysql does not make any difference, even though they should be the main load. I ahve recently installed MailScanner which usually increases the load tremendously, but I did not see sendmail as the problem, even when I shut down MailScanner, there were no sendmail processes remaining and the load kept climbing. The fact that the server is still responsive is very curious,at 23 it should be very sluggish.
Am Mo, den 19.12.2005 schrieb Chris Mason (Lists) um 22:04:
Yes, top is not showing me any real informaiton and the server is responsive, but the MTA shuts down because it sees such high load. It seems to be fake load, locked up processes. I see a lot of vsftpd processes using ps -x and I cannot kill them. It's very strange. I have several dedicated servers that get hammered all day but I have never seen this before. Even shuting down httpd and mysql does not make any difference, even though they should be the main load. I ahve recently installed MailScanner which usually increases the load tremendously, but I did not see sendmail as the problem, even when I shut down MailScanner, there were no sendmail processes remaining and the load kept climbing. The fact that the server is still responsive is very curious,at 23 it should be very sluggish.
Get a full process list and find the zombies - process state "Z", probably even "D". Yes, they do not really cause CPU usage but increase the load. If it is vsftpd which often dies abnormal you should investigate that further.
Alexander
Am Mo, den 19.12.2005 schrieb Chris Mason (Lists) um 13:37:
I have a system that is running into problems with high load, however, even when I shut down everything that could be loading the system, the load continues to rise. I can't see anything that is causing the load. Any ideas?
08:36:06 up 1 day, 10:57, 3 users, load average: 19.98, 19.30, 17.29 90 processes: 75 sleeping, 2 running, 13 zombie, 0 stopped
13 zombies! You have an application which respawns and dies often.
Alexander