昨日、簡単な 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 つのジョブが正しく動作しない可能性があります。
例えば:
3 33 * * *
= 3 分 33 時間 -> 動作しません!
33 3 * * *
= 33 分 3 時間 -> このように変更します。