errors in crontab file, can't install. - linux crontab
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?
"/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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【crontab】“bad minute”及“errors in crontab file, can't install”錯誤處理Error
- Linux crontabLinux
- Linux下crontab命令的用法:sudo crontab -lLinux
- Linux crontab命令Linux
- linux /etc/crontabLinux
- Linux Crontab命令詳解Linux
- Linux的crontab問題Linux
- Linux Crontab(網文摘錄)Linux
- linux crontab 命令詳解Linux
- linux中crontab命令(轉)Linux
- crontab使用說明【一文搞懂Linux定時任務Crontab】Linux
- crontab命令
- crontab 示例
- Linux crontab 未執行排查Linux
- Linux crontab 定時任務Linux
- linux中crontab的問題Linux
- Linux 定時任務(crontab)Linux
- Linux crontab 沒有執行Linux
- Linux - crontab(定時任務)Linux
- Linux下crontab命令的用法Linux
- Linux 自動任務crontabLinux
- linux/unix crontab命令詳解Linux
- crontab 定時
- crontab任務
- crontab 命令使用
- crontab 設定
- linux之 crontab 定時任務Linux
- linux下crontab的使用實現Linux
- linux的定時任務crontabLinux
- Linux Crontab定時任務命令Linux
- Linux Crontab:15 Awesome Cron Job ExamplesLinux
- Linux Crontab 定時任務[轉]Linux
- MongoDB報錯:"assertion" : "can't map file memory"MongoDB
- crontab工具報錯crontab:you are not authorized to use cron.Sorry.Zed
- can't create PID file問題處理
- linux 使用crontab 建立定時任務Linux
- linux下定時任務 crontab詳解Linux
- Linux 中 crontab 詳解及示例(收藏)Linux