cron Error: bad username; while reading /etc/cron.d file

时间:2020-01-09 14:16:21  来源:igfitidea点击:

cron日志文件/var/log/cron.log中出现以下错误:

Error: bad username; while reading /etc/cron.d/backups

解决方法:此错误是因为忘记设置要运行cron任务的用户名

语法

1 2 3 4 5 USERNAME /path/to/command arg1 arg2

其中:

1: Minute (0-59)
    2: Hours (0-23)
    3: Day (0-31)
    4: Month (0-12 [12 == December])
    5: Day of the week(0-7 [7 or 0 == sunday])
    USERNAME - Name of the user
    /path/to/command ? Script or command name to schedule

正确的语法如下所示,以便root用户每天00:50运行cron作业:

50 0 * * * root /etc/cron.d/backups

以Hyman用户身份运行:

50 0 * * * Hyman /etc/cron.d/backups