Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2分ごとにcronジョブを実行する次のコマンドラインを作成しました
2 * * * * php -f /home/u260451427/public_html/cron/cron_sms_sending_queue.php
私のサーバー構成はそのように見えます
しかし、それは機能していません。
2 * * * * <command>毎時 2 分ごとに実行されます。
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>