zoukankan      html  css  js  c++  java
  • 【crontab】“bad minute”及“errors in crontab file, can't install”错误处理

    今天有朋友提到,在使用crontab定制后台定时备份任务时报出“bad minute”及“errors in crontab file, can't install”错误。
    经确认,根本原因是crontab文件中时间格式定义不正确导致的。
    简单记录一下这个问题,同时确认一下crontab中时间格式的规范,供参考。

    1.具体报错信息如下
    ora10g@secDB /home/oracle$ crontab -e
    no crontab for oracle - using an empty one
    crontab: installing new crontab
    "/tmp/crontab.XXXXcz4Lql":1: bad minute
    errors in crontab file, can't install.
    Do you want to retry the same edit?
    Enter Y or N
    Do you want to retry the same edit?
    Enter Y or N
    Do you want to retry the same edit?
    Enter Y or N
    Do you want to retry the same edit?
    Enter Y or N
    Do you want to retry the same edit?
    Enter Y or N
    Do you want to retry the same edit?
    Enter Y or N
    Do you want to retry the same edit? N
    crontab: edits left in /tmp/crontab.XXXXcz4Lql

    2.crontab时间格式内容
    *    *    *    *    *    command
    M    H    D    m    d    command
    分   时   日   月   周   命令
    第1列表示分钟1~59 每分钟用*或者 */1表示
    第2列表示小时1~23(0表示0点)
    第3列表示日期1~31
    第4列表示月份1~12
    第5列标识号星期0~6(0表示星期天)
    第6列要运行的命令或脚本内容

    如果能掌握这个crontab的时间格式的定义,基本上就会避免出现“bad minute”错误。

    3.正确格式样例一则
    ora10g@secDB /home/oracle$ crontab -e
    0 22 * * 0-6 /db_backup/dpump_dir/expdp.sh 1>>/db_backup/dpump_dir/expdp.log 2>&1
    ~
    ~

    这是一个比较常见的使用EXPDP命令定时备份数据库的例子。
    “/db_backup/dpump_dir/expdp.sh”脚本将在每天晚上10点自动运行,同时将运行的日志写入到“/db_backup/dpump_dir/expdp.log”文件中。

    4.如果仍然解决不了问题,可以考虑重新启动crond服务
    注意需要使用root用户完成服务的重启。
    ora10g@secDB /home/oracle$ su - root
    Password:

    [root@secDB ~]# /etc/rc.d/init.d/crond restart
    Stopping crond:                                            [  OK  ]
    Starting crond:                                            [  OK  ]

    5.小结
    如果能够按照规则和操作规范完成维护操作,出错的概率将会大大的降低,因此平时指定好规范文档非常的重要。

    Good luck.

    secooler
    10.04.15

    -- The End --

  • 相关阅读:
    win8 tips
    从win10体验到重装win8
    win10 体验 日志
    磁盘分区与多系统安装(windows ubuntu)
    使用ultraISO制作ISO镜像文件
    C++中const用法总结
    4月8号的打卡
    Java第二次作业
    第一次Java作业
    NX二次开发-改变自制UI界面大小
  • 原文地址:https://www.cnblogs.com/grimm/p/6872303.html
Copyright © 2011-2022 走看看