Benim Linux sunucu üzerinde yangın için bir Cron olayı alınamıyor [kapalı]

0 Cevap php

Ben bir saatlik süreç yangın gereken bir Amazon EC2 Linux mikro örneği sunucusu var. Ben crontab'ın kullanmak ve yangın alınamıyor seçtiniz.

Ben / etc / cron.hourly bir *. Sh dosyası yerleştirilir

  • Ben çalıştırırsanız beklendiği gibi $ sh /etc/cron.hourly/notify.sh komut davranır.
  • Ben cron servisi çalışıp çalışmadığını görmek için kontrol ve öyle.
  • I crontab içerikleri ucunda kontrol ettirin

notify.php logs when it is called so I can tell that the service is never running. Any ideas?

Teşekkürler

contents of: /etc/cron.hourly/notify.sh

curl localhost/notify.php

contents of: /etc/crontab

SHELL=/bin/bash  
PATH=/sbin:/bin:/usr/sbin:/usr/bin  
MAILTO=root   HOME=/       

# run-parts  
01 * * * * root run-parts /etc/cron.hourly  
02 4 * * * root run-parts /etc/cron.daily  
22 4 * * 0 root run-parts /etc/cron.weekly  
42 4 1 * * root run-parts /etc/cron.monthly 

0 Cevap