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 月曜日から日曜日
または、水曜日または木曜日のWEDorなどの短縮語表記でもTHU
WED
THU
# m h dom mon dow command 00 07 * * 5 your-command-here
上記の例では、毎週金曜日の午前 7:00 にコマンドを実行します。