crontab 错误

crontab 错误

我提出以下说明:

00 12 * * * /usr/bin/php -q -f
* * * * * * /var/www/html/glpi/scripts/ldap_mass_sync.php action=1
* * * * * * ldapservers_id=1

但我收到了这样的信息:

crontab: installing new crontab
"/tmp/crontab.6N2VjD/crontab":1: bad command
errors in crontab file, can't install.
Do you want to retry the same edit? (y/n)

我该如何解决这个问题?

答案1

00 12 * * * /usr/bin/php -q -f
* * * * * /var/www/html/glpi/scripts/ldap_mass_sync.php action=1
* * * * * ldapservers_id=1

应该没事

只允许 5 颗星

答案2

Cron 遵循以下格式。

<Minute> <Hour> <Day_of_the_Month> <Month_of_the_Year> <Day_of_the_Week>

您正在使用 extra *,但它不符合格式。您需要删除 extra *

相关内容