0

我创建了以下命令行以每 2 分钟运行一次 cron 作业

 2 * * * *  php -f /home/u260451427/public_html/cron/cron_sms_sending_queue.php

我的服务器配置看起来像这样cron_job

但它不工作。

4

1 回答 1

1

2 * * * * <command>每小时每两分钟运行一次。

来自'man 5 cron':

Step values can be used in conjunction with ranges...
Steps are also permitted after an asterisk, so if you 
want to say ``every two hours'', just use */2

因此,您的 crontab 条目应该是

*/2 * * * * <command>

于 2012-04-14T09:06:43.850 回答