Kevin M

Registered
Jan 25, 2011
3
0
51
WHM has not been reporting anything under the Daily Process Log for a few days now. The last report was for 07-11-2011. I have verified that the crontab is intact. I tried running it via SSH and it returned empty as well. I'm running WHM 11.30.1. Any ideas?
 

cPanelTristan

Quality Assurance Analyst
Staff member
Oct 2, 2010
7,607
43
348
somewhere over the rainbow
cPanel Access Level
Root Administrator
When you state that you have verified the crontab is intact, do you mean that this entry is in /var/spool/cron/root location?

Code:
/usr/local/cpanel/bin/dcpumon >/dev/null 2>&1
If it does, can you check crond itself is running?

Code:
ps -ef | grep crond
If it isn't running, please run this command:

Code:
/etc/init.d/crond restart
If crond is running, try checking /var/log/cron for the cron entry to see if it shows anything amiss:

Code:
grep dcpumon /var/log/cron
 

Kevin M

Registered
Jan 25, 2011
3
0
51
Ah! Silly mistake. I forgot to check if cron was actually running in the first place. Might have been killed accidentally when the memory peaked at some point. The cron job (you specified) is intact according to
Code:
crontab -e
I'll report back and let you know if this fixes the issue. Thanks!