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.
重複の可能性: PHP では、実行を検出する方法は CLI モードまたはブラウザーからですか?
cron がサーバーによってのみ実行されるかどうかをテストする方法
ありがとう
cron スクリプトで「wall」などを使用しない限り、cron は何も表示しません。
出力をログ ファイルなどにリダイレクトしていますか?
できることは、cron で実行しているスクリプトの最後に行を追加することです。それは次のようなことをします:
date +"%D %r `echo Cron completed`" >> /tmp/cron_job.log
次に、確認できます
cat /tmp/cron_job.log
そして、それがいつ終了したかを教えてくれます。