errors in crontab file, can't install. - linux crontab

tolywang發表於2010-03-25
crontab: installing new crontab
"/tmp/crontab.XXXXnTPjHh":1: bad command
errors in crontab file, can't install.
Do you want to retry the same edit? 
 
------------------------------------------------------------------------------------------------------------
 
 
原來是自己設定的crontab中的日期格式錯誤了, 多了一個星號 *  ,
 
0,30  * * * * sh  /etc/rsyncdate.sh 1>/u01/run/log/ntp.log 2>>/u01/run/log/ntp.bad    時間同步是每個小時的 0分鐘,30分的時候執行一次 。
 
我想改成每隔 5 分鐘執行一次,以便時間同步更加及時, 結果寫成了 :
 
 
 
*/5  * * * * * sh  /etc/rsyncdate.sh 1>/u01/run/log/ntp.log 2>>/u01/run/log/ntp.bad   儲存的時候提示錯誤 。
 
 
正確應該是少一個星號 :  
 
 
*/5 * * * * sh  /etc/rsyncdate.sh 1>/u01/run/log/ntp.log 2>>/u01/run/log/ntp.bad
 
 
 
 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-630369/,如需轉載,請註明出處,否則將追究法律責任。

相關文章