crontab(2)
-
Crontab에서 job 중복 실행 방지
옵션은 없음Lock 파일 사용flock - Ensures only one instance of the job can run at a time.-n - Fails immediately if the lock cannot be acquired./tmp/myjob.lock - Lock file location./path/to/script.sh - The script to execute. * * * * * flock -n /tmp/myjob.lock /path/to/script.sh PID 체크Creates a PID file (/tmp/myjob.pid) to track the running job.Exits if the file already exists.Deletes the PID file after the..
2024.12.24 -
Crontab 사용
https://happist.com/553442/%EC%84%9C%EB%B2%84%EC%97%90%EC%84%9C-%EC%9E%90%EB%8F%99-%EC%8B%A4%ED%96%89%EC%9D%84-%EA%B0%80%EB%8A%A5%EC%BC%80-%ED%95%B4%EC%A3%BC%EB%8A%94-crontab%ED%81%AC%EB%A1%A0%ED%83%AD-%EC%84%A4%EC%A0%95 서버 자동 실행 crontab(크론탭) 설정 방법 및 문제점 해결하기 | 꿈꾸는섬 마케팅 경영 사례 연구 및 트렌드 탐구 happist.com # 목록 보기 crontab -l # 편집 crontab -e # 재실행 # 내용 변경후 재실행 service cron restart # 상태확인 service cron st..
2024.03.01