我運行一個cronjob沒有發送HTTP請求,從我的共享使用以下命令託管到另一個我EC2服務器每30分鐘: -猞猁的cronjob但
0,30 * * * * /usr/bin/lynx http://qwerty.com/crons/myCron.php
cron作業不運行每根據我從Cron守護程序收到的電子郵件30分鐘。但是,PHP文件似乎只是有時候才被調用。我注意到,只有在我收到的Cron Daemon電子郵件中發送HTTP請求時,它纔會成功。
例子如下: -
不成功的嘗試
Your Terminal type is unknown!
Enter a terminal type: [vt100]
TERMINAL TYPE IS SET TO vt100
(B)0[1;24r[m[?7h[?1h=[H[J[21B[0;7mGetting http://qwerty.com/crons/myCron.php[m
[0;7mLooking up qwerty.com[m[K
[0;7mMaking HTTP connection to qwerty.com[m
[24;1H
[?1l>
成功的嘗試
Your Terminal type is unknown!
Enter a terminal type: [vt100]
TERMINAL TYPE IS SET TO vt100
(B)0[1;24r[m[?7h[?1h=[H[J[21B[0;7mGetting http://qwerty.com/crons/myCron.php[m
[0;7mLooking up qwerty.com[m[K
[0;7mMaking HTTP connection to qwerty.com[m
[0;7mSending HTTP request.[m [22;22H
[0;7mHTTP request sent; waiting for response.[m
[24;1H
[?1l>
我怎樣才能確保在HTTP請求每次發送cron守護進程運行?
爲什麼不試試wget? – Pogrindis