매일 저녁 7시 30분마다 웹사이트 접속하는 cron 을 설정했는데요…
이게 7시 30분만 실행되는게 아니라… 15분 뒤에 또 실행이 됩니다. ㅠㅠ
시간을 37분, 41분 등 이리저리 바꿔봐도 항상 15분 뒤면 어김없이 실행이 됩니다.
14.04.2 LTS 쓰고 있습니다.
cron 관련해서는 /etc/crontab 에서 마지막 줄 추가한 것 말고 다른건 건들지 않았습니다.
/etc/crontab 에 아래와 같이 설정을 했는데 뭐가 잘못된걸까요?
제가 잘못 설정을 한건지, 아니면 다른 곳 어디를 살펴봐야 하는지…
고수님, 좀 도와주십시오. ㅠㅠ
[code:25o6sdq7]
/etc/crontab: system-wide crontab
Unlike any other crontab you don’t have to run the `crontab’
command to install the new version when you edit this file
and files in /etc/cron.d. These files also have username fields,
that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
30 19 * * * root wget -q http://192.168.0.1/test.php
[/code:25o6sdq7]