아는 지인의 요청으로 검색하게 된 내용
crontab의 경우 시스템 전체와 사용자 별로 설정을 저장한다.
/etc/crontab 은 system 전체에 대한 (데몬용) crontab이고
/var/spool/cron/crontabs/ 에는 사용자별 crontab 파일이 존재한다.
또한 cron에 대한 로그는
기본적으로
/var/log/syslog에서 "CRON" 키워드로 검색을 하면 나오지만 안나온다면
cron에서 실행되는 스크립트의 마지막에 로그를 남기도록 하는 수 밖에 없을듯 하다.
crontab의 경우 시스템 전체와 사용자 별로 설정을 저장한다.
crontab [-u user] file
crontab [-u user] [-l | -r | -e] [-i] [-s]
[링크 : http://linux.die.net/man/1/crontab ] |
ubuntu 12.10 LTS에서 도움말을 보니 추가된 내용이 있는데
$ man crontab FILES
/etc/cron.allow
/etc/cron.deny
/var/spool/cron/crontabs
There is one file for each user's crontab under the /var/spool/cron/crontabs directory. Users are not
allowed to edit the files under that directory directly to ensure that only users allowed by the system to
run periodic tasks can add them, and only syntactically correct crontabs will be written there. This is
enforced by having the directory writable only by the crontab group and configuring crontab command with the
setgid bid set for that specific group.
|
/etc/crontab 은 system 전체에 대한 (데몬용) crontab이고
/var/spool/cron/crontabs/ 에는 사용자별 crontab 파일이 존재한다.
또한 cron에 대한 로그는
기본적으로
/var/log/syslog에서 "CRON" 키워드로 검색을 하면 나오지만 안나온다면
cron에서 실행되는 스크립트의 마지막에 로그를 남기도록 하는 수 밖에 없을듯 하다.
'Linux' 카테고리의 다른 글
linux shared object(so) tutorial (0) | 2014.06.30 |
---|---|
리눅스 쉘 스크립트 << EOF 를 이용해서 자동화 하기 (0) | 2014.04.11 |
ltrace strace ldd readelf objdump 결과물 (0) | 2013.11.26 |
Linux Router Project - Dead!!! (2) | 2013.11.26 |
하드 디스크 통채로 덤프해서 마운트 하기 (0) | 2013.07.06 |