crontab 中的糟糕时刻?

crontab 中的糟糕时刻?

我的系统日志中出现以下错误:

Oct 17 13:14:03 tracker cron[873]: (*system*) ERROR (Syntax error, this crontab file will be ignored)
Oct 17 13:14:03 tracker cron[873]: Error: bad minute; while reading /etc/crontab

不过我没看到任何不好的记录!我的crontab文件是:

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 18   * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 18   * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 18   1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

答案1

用于cat -v /etc/crontab检查非预期的控制字符。

答案2

Cron tab 要求文件至少第一行和最后一行不是实际的 cron 指令。您可以改为添加注释 - 例如文件中的以下注释:

# START CRON JOB LIST
* * * * * /path/to/script/script1.sh
0 3 * * 0 /path/to/script/script2.sh
5 0 * * 1 /path/to/script/script3.sh
# END CRON JOB LIST

像这样安装

sudo crontab -u user /path/to/cron/file

这应该对你有用。

答案3

我遇到了与此错误类似的问题:

crontab: installing new crontab
"/tmp/crontab.MswKCq":0: bad minute
errors in crontab file, can't install.
Do you want to retry the same edit? n
crontab: edits left in /tmp/crontab.MswKCq

谷歌搜索了一番,发现这是由于 cron 日志文件夹(即 /var)中没有空间而导致的错误。确保运行df -h /var/并查看那里是否有足够的空间。

答案4

对于在 Mac 上遇到问题的人,您可以通过输入以下代码来检查 crontab 中是否存在非打印字符:

crontab -l | cat -e

或者

sudo crontab -l | cat -e

如果你有一个 root crontab。

相关内容