我的 cron.hourly 配置有什么问题?

我的 cron.hourly 配置有什么问题?

每小时我都会收到一封包含此类错误的电子邮件,

Subject: Cron <root@supa> root    cd / && run-parts --report /etc/cron.hourly

/bin/sh: root: not found

/etc/crontab 的内容如下,无论我是否删除用户“root”(第 6 列),我都会收到相同的错误。

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

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

我的 cron.hourly 目录中有两个文件,

$ ll /etc/cron.hourly/
total 0
lrwxrwxrwx 1 root root 25 2009-10-29 09:24 ntpsync -> /home/<user>/bin/ntpsync
lrwxrwxrwx 1 root root 28 2009-10-23 10:33 foo -> /home/<user>/bin/foo

第一个脚本内容如下,

$ cat ~/bin/ntpsync
#!/usr/bin/env bash
echo "user: $USER"
if [[ "$USER" == "root" ]] ; then
    ntpdate ntp.ubuntu.com
else
    sudo ntpdate ntp.ubuntu.com
fi

即使我删除了 /etc/cron.hourly/ 目录中的两个脚本,我仍然每小时都会收到相同的错误电子邮件。我尝试重新启动 cron,但仍然收到相同的错误电子邮件。我的下一个想法是重新启动,但我会避免这样做。

$ sudo /etc/init.d/cron restart

我的 Ubuntu 版本如下,

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION="Ubuntu 8.04.1"

更新:我之前从 /etc/crontab 文件中删除了第 6 列“root”,因为当我在线搜索时,有人提到这可以解决问题。现在我认为问题在于我弄乱了系统 crontab 配置,而不是 root 的配置。

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

答案1

cron 包(3.0pl1-100ubuntu2.1,这是 ubuntu 8.04 的最新版本)中的默认 crontab 文件如下所示:

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 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )

您应该能够将其粘贴到文件中,但您可能还想确保您拥有最新版本的软件包。您可以通过以下方式执行此操作:

apt-get update
apt-get install cron

更新:

有两种不同类型的 crontab,一种是位于 的系统 crontab /etc/crontab。此 crontab 具有以下格式:

minute hour dayOfMonth month dayOfWeek userToRunAs restOfLineIsCommand

另一种是用户 crontab,可以使用 进行修改crontab。实际配置位于/var/spool/cron/crontabs/USERNAME并始终以拥有它的用户身份执行,因此该文件的格式为:

minute hour dayOfMonth month dayOfWeek restOfLineIsCommand

答案2

我知道您说过删除第六列中的“root”后仍然会出现错误,但这确实看起来像是问题所在。

例如,看看其他行。它们都以“test”开头。这不是用户,而是命令的开头。删除“root”将使你的命令以“cd”开头。

特别是因为错误消息表明找不到“root”,这是当您尝试运行不存在的程序时遇到的错误。

因此我建议再次尝试将其删除。

答案3

/etc/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 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

顺便说一句,通常不要触碰此文件。如果您需要添加更多通用 crontab,请使用/etc/cron.d此文件。您可以尝试使用以下命令恢复 cron 包的默认配置:

$ sudo apt-get install --reinstall --yes -o DPkg::Options::=--force-confmiss -o DPkg::Options::=--force-confnew cron

看看它是否能解决问题。

答案4

做法:

# crontab -r

不要做

# crontab /etc/crontab

相反,编辑文件/etc/crontab手动。

相关内容