Cron

我添加了另一個工作後,Cron 停止工作

  • July 28, 2018

我希望你一切都好。

我的 cron 工作面臨一個大問題。直到今天,我有兩個 cron 作業要在我的 crontab 中執行,以便在一天中的特定時間執行。

在我添加另一個之前,一切都執行得很完美,現在沒有 cron 正在執行。即使刪除新添加的作業也不能解決問題。

為什麼會這樣?你能幫我麼?謝謝!

供您審查的 Cron:

0  18   * * 1-5 root    cd /var/www/html/require/ && php correoTodosComprobantesHoy.php > ../debug/get_debug_correo_hoy.txt &
0  */2  * * *   root    cd /var/www/html/default/ && php correosDiarios.php > ../debug/get_debug_correos_clientes.txt &
30  18   * * 1-5 root   cd /var/www/html/require/ && php correoTodosEscaneosHoy.php > ../debug/get_debug.txt &

這就說得通了。我之前沒有註意到,但你需要在你的上一份工作之後添加一個換行符cron

引用自:https://serverfault.com/questions/923896