我创建了以下命令行,每隔2分钟运行一次cron作业
2 * * * * php -f /home/u260451427/public_html/cron/cron_sms_sending_queue.php
我的服务器配置看起来像
但它不起作用。
答案 0 :(得分:1)
2 * * * * <command>
每隔2小时就会运行一次。
来自'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>