• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

CRON jobs not running after 8.1 upgrade

V

VyReN

Guest
Sigh...biggest mistake I've ever made, upgrading to Plesk 8.1

Since the upgrade cron jobs no longer run. crontab -l shows:

MAILTO=[emailaddressremoved]
*/15 * * * * /usr/local/psa/admin/sbin/backupmng >/dev/null 2>&1
0 1 * * 1 /usr/local/psa/libexec/modules/watchdog/cp/secur-check
0 1 * * 1 /usr/local/psa/libexec/modules/watchdog/cp/send-report weekly
10 1 * * * /usr/local/psa/libexec/modules/watchdog/cp/clean-sysstats

...and so on and so on ...

cron is running
cron's log shows me listing and updating but shows nothing actually running.

Ummm... Help?

P.S. Yes, I've searched the forums high and low. All hotfixes (eg. what SWsoft should have done before a public release of new software) do nothing or do not apply (eg. the /psa/psa issue).
 
Code:
18,48   *       *       *       *       /usr/local/drweb/update/update.pl >/dev/null 2>&1
0       1       *       *       1       /usr/local/psa/libexec/modules/watchdog/cp/secur-check
0       1       *       *       1       /usr/local/psa/libexec/modules/watchdog/cp/send-report weekly
10      1       *       *       *       /usr/local/psa/libexec/modules/watchdog/cp/clean-sysstats
15      1       *       *       *       /usr/local/psa/libexec/modules/watchdog/cp/pack-sysstats day
15      1       *       *       1       /usr/local/psa/libexec/modules/watchdog/cp/pack-sysstats week
15      1       1       *       *       /usr/local/psa/libexec/modules/watchdog/cp/pack-sysstats month
15      1       1       *       *       /usr/local/psa/libexec/modules/watchdog/cp/pack-sysstats year
20      1       *       *       *       /usr/local/psa/libexec/modules/watchdog/cp/clean-events
0       3       *       *       7       /usr/local/psa/libexec/modules/watchdog/cp/clean-reports
3       0       *       *       *       /usr/local/psa/bin/run-parts.sh /etc/psa/plesk-cron.daily
15      0       *       *       7       /usr/local/psa/bin/run-parts.sh /etc/psa/plesk-cron.weekly
25      1       1       *       *       /usr/local/psa/bin/run-parts.sh /etc/psa/plesk-cron.monthly

Code:
moon# cd /etc/psa/plesk-cron.daily
moon# ls
autoreport      mysqldump       statistics

cat autoreport
#!/bin/sh

/usr/local/psa/admin/bin/php /usr/local/psa/admin/plib/report/autoreport.php --auto daily >/dev/null 2>&1

moon# cat mysqldump
#!/bin/sh

/usr/local/psa/bin/mysqldump.sh >/dev/null 2>&1

cat statistics
#!/bin/sh

/usr/local/psa/admin/sbin/statistics >/dev/null 2>&1
 
I have nothing in the plesk-cron.daily directory. Does this matter? Otherwise everything else looks the same.

Ideas would be awesome...

Could this be linked to a problem I had with sendmail after the upgrade? The symbolic link was bad, needed to make a new one. ... what would cron need a symbolic link to?

I'm totally at a loss...
 
Back
Top