Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果服务器没有重新启动,我需要在每 5 天的正常运行时间后重新启动,并在 5 天后再次重新启动并连续继续此过程。我想知道如何使用 cronjob 或任何其他脚本来做到这一点
您可以使用 crontab 语法的一部分 dow 或星期几,在特定日期的每次出现时执行命令,使用以下形式的数字:
0-6 周日至周六 1-7 周一至周日
0-6 周日至周六
1-7 周一至周日
甚至是缩短的文字符号,例如周三WED或THU周四的或
WED
THU
# m h dom mon dow command 00 07 * * 5 your-command-here
上面的示例将在每个星期五早上 7:00 运行命令