昨天我创建了简单的 crontab 任务。我认为写得不错。今天我登录我的服务器并检查时间。我的 crontab 任务不起作用,因为晚上系统没有重新启动。当然我知道,服务器重新启动是没用的,但我只想这样做进行测试。
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# 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
2 57 * * * root dnf check-update && dnf upgrade -y
3 33 * * * root reboot
3 44 * * * root ./backup.sh
4 15 * * * root screen -dmS minkraft java -Xincgc -Xmx1555M -jar /minkraft/bukkit.jar nogui
答案1
你搞糊涂了分钟和小时crontab 作业中的值。由于此问题,前三个作业可能无法正常工作。
例如:
3 33 * * *
= 3 分钟 33 小时 -> 不起作用!
33 3 * * *
= 33 分钟 3 小时 -> 像这样更改。