서버가 다시 시작될 때 실행되도록 crontab의 쉘 스크립트를 예약하고 싶습니다. 서버가 갑자기 중지되거나 충돌한 후 누군가 서버를 시작할 때도 실행되어야 합니다.
크론탭에서는 어떻게 하나요? 어떤 조언이라도 큰 도움이 될 것입니다.
답변1
당신이 무엇을 요구하는지 명확히 할 수 있습니까? 그러나 재부팅 시 cron을 실행하려면 @reboot를 사용할 수 있습니다.
사람 5 크론탭
These special time specification "nicknames" are supported, which replace the 5 initial time and date
fields, and are prefixed by the ’@’ character:
@reboot : Run once after reboot.
@yearly : Run once a year, ie. "0 0 1 1 *".
@annually : Run once a year, ie. "0 0 1 1 *".
@monthly : Run once a month, ie. "0 0 1 * *".
@weekly : Run once a week, ie. "0 0 * * 0".
@daily : Run once a day, ie. "0 0 * * *".
@hourly : Run once an hour, ie. "0 * * * *".