Difference between revisions of "Increasing load average issue with CentOS 5.3"

From Notes_Wiki
m
m
 
Line 1: Line 1:
[[Main Page|Home]] > [[CentOS]] > [[CentOS 5.x]] > [[Increasing load aveage issue with CentOS 5.3]]
[[Main Page|Home]] > [[CentOS]] > [[CentOS 5.x]] > [[Increasing load average issue with CentOS 5.3]]


Load average keeps increasing on CentOS 5.3. This happens if you disable mcstrans service. The cron file `<tt>/etc/cron.hourly/mcelog.cron</tt>' hangs forever while executing command cat `<tt>/sys/hypervisor/uuid</tt>' and hence the number of processes on system keeps increasing. This leads to very steep increase in load average.
Load average keeps increasing on CentOS 5.3. This happens if you disable mcstrans service. The cron file `<tt>/etc/cron.hourly/mcelog.cron</tt>' hangs forever while executing command cat `<tt>/sys/hypervisor/uuid</tt>' and hence the number of processes on system keeps increasing. This leads to very steep increase in load average.


To solve the issue open file `<tt>/etc/cron.hourly/mcelog.cron</tt>'. Comment all code lines in it and write `<tt>exit 0</tt>' at the end of file.
To solve the issue open file `<tt>/etc/cron.hourly/mcelog.cron</tt>'. Comment all code lines in it and write `<tt>exit 0</tt>' at the end of file.

Latest revision as of 02:46, 5 March 2022

Home > CentOS > CentOS 5.x > Increasing load average issue with CentOS 5.3

Load average keeps increasing on CentOS 5.3. This happens if you disable mcstrans service. The cron file `/etc/cron.hourly/mcelog.cron' hangs forever while executing command cat `/sys/hypervisor/uuid' and hence the number of processes on system keeps increasing. This leads to very steep increase in load average.

To solve the issue open file `/etc/cron.hourly/mcelog.cron'. Comment all code lines in it and write `exit 0' at the end of file.