今天有朋友提到,在使用定制后台定时任务时报出“”及“ in crontab file, can't install”。 经确认,根本原因是crontab文件中时间定义不正确导致的。 简单记录一下这个,同时确认一下crontab中时间格式的规范,供参考。 1.具体报错信息如下 ora10g@secDB /home/oracle$ crontab -eno crontab for - using an empty onecrontab: installing new crontab"/tmp/crontab.XXXXcz4Lql":1: bad minuteerrors in crontab file, can't install.Do you want to retry the same edit?Enter Y or NDo you want to retry the same edit?Enter Y or NDo you want to retry the same edit?Enter Y or NDo you want to retry the same edit?Enter Y or NDo you want to retry the same edit?Enter Y or NDo you want to retry the same edit?Enter Y or NDo you want to retry the same edit? Ncrontab: edits left in /tmp/crontab.XXXXcz4Lql 2.crontab时间格式内容 * * * * * commandM 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 -e0 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 - rootPassword:[root@secDB ~]# /etc/rc.d/init.d/crond restartStopping crond: [ OK ]Starting crond: [ OK ] 5.小结 如果能够按照规则和操作规范完成维护操作,出错的概率将会大大的降低,因此平时指定好规范文档非常的重要。 Good luck.
errors in crontab file, can't install 错误处理
2018-02-07
本文作者: 小罗同学
原文链接: errors in crontab file, can't install 错误处理
版权声明: 本站所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
免责声明: 文中如涉及第三方资源,均来自互联网,仅供学习研究,禁止商业使用,如有侵权,联系我们24小时内删除!
- « 上一篇debian常用软件安装及配置
- 下一篇 »创意二维码制作原理
评论1
暂时没有评论