如何运行一个 cron 作业每分钟执行一次?

如何运行一个 cron 作业每分钟执行一次?

我正在尝试创建一个目录,其名称中包含时间戳/home。我以 root 用户身份创建了以下 cron 作业,但它没有运行。我究竟做错了什么?

以下是我使用 root 用户权限创建的 cron 作业。

[root@bvdv-emmws01 home]# crontab -l
* * * * * /home/test.sh

以下为 的内容/home/test.sh更新:添加了目录的完整路径。

[root@bvdv-emmws01 home]# cat /home/test.sh 
#!/bin/bash
mkdir /home/test_$(date -d "today" +"%Y%m%d%H%M%S")

许可/home/test.sh

[root@bvdv-emmws01 home]# ls -ltr /home/test.sh
-rwxrwxrwx 1 root root 58 Dec  2 12:58 /home/test.sh

我已经更新了/etc/crontab文件。该文件现在具有以下内容:

[root@bvdv-emmws01 home]# cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# For details see man 4 crontabs

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed

* * * * * root /home/test.sh

状态crond daemon

[root@bvdv-emmws01 home]# service crond status
crond (pid  1910) is running...

答案1

crontab -e使用创建并列出的crontabcrontab -l不应为该命令指定用户。您的条目应为:

* * * * * /home/test.sh

或者也可以将您已有的行放入/etc/crontab其中。

来自man 5 crontab(系统 CRON 文件示例部分):

# /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.

注意最后一句。

相关内容