1. Cron Job 등록
crontab -e
로 job을 등록할 수 있다.
# crontab -e 실행 후 아래 line 등록
# 매월 9일 21시 8분에 run.sh 실행
8 21 9 * * /home/user/.../run.sh
# weekday(월-금) 매일 18시 0분에 run.sh 실행
0 18 * * 1-5 /home/user/.../run.sh
2. Cron Job 확인
crontab -l
을 확인하면 등록한 job 목록을 보여준다.
user@user-System-Product-Name:~/$ crontab -l
MAILTO=""
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
# 매월 9일 21시 8분에 run.sh 실행
8 21 9 * * /home/user/.../run.sh
# weekday(월-금) 매일 18시 0분에 run.sh 실행
0 18 * * 1-5 /home/user/.../run.sh
3. Job 실행 안됐을 때 log 확인
grep CRON /var/log/syslog
명령어로 cron log를 확인할 수 있다.
4. 근데 실행이 안될때!
cron에 등록한 파일이 실행이 안되면 권한문제일 수 있다.
chmod +x run.sh
으로 실행파일의 권한을 바꿔주자.
728x90
'개발' 카테고리의 다른 글
[ChatGPT가 알려주는] overflow, underflow 파이썬 예시 (0) | 2024.02.19 |
---|---|
[ubuntu] nohup 파일 생성 시 현재 날짜로 생기게 하기 (0) | 2024.02.15 |
[ubuntu] 좀비 프로세스 죽이기(defunct) (1) | 2024.01.13 |
[python] multiprocessing 사용법 (0) | 2023.09.30 |
[tmux] tmux cheat sheet (0) | 2023.09.30 |