てっくらのーと
てっくらのーとは、触れた技術のメモと日常の記録が少し合わさった個人のサイトです。
てっくらのーとは、触れた技術のメモと日常の記録が少し合わさった個人のサイトです。
cron メモ
前エントリで
cron 設定することを書いたんだけど、何せ久しぶりなもんだから色々忘れていたので調べたメモ。
cron が見る場所
- /var/spool/cron/crontabs
- /etc/crontab
- /etc/cron.hourly
- /etc/cron.daily
- /etc/cron.weekly
- /etc/cron.monthly
- /etc/cron.d
所有権
- root:root
パーミッション
- 644
使い分け
- /var/spool/cron/crontabs:ユーザ毎(/etc/passwd)
- /etc/crontab:システム管理者
- /etc/cron.d:それ以外
フォーマット
3通りある。ユーザフィールドがあるかないか、スクリプトファイルか。
-
crontab -u user -e (/var/spool/cron/crontabs)(多分)
- min hour dayofmouth month dayofweek command
-
/etc/crontab の編集 or /etc/cron.d 配下のファイル
- min hour dayofmouth month dayofweek user command
-
/etc/hourly など
- 普通のスクリプトファイル
反映
crond の再起動は必要ない。だってman
くんがそう言ってるし。。ちなみにこれは Linux(Vixie Cron) だけど、AIX は違うらしいね。
cron then wakes up every minute, examining all stored crontabs, checking each command to see if it should be run in the
current minute. When executing commands, any output is mailed to the owner of the crontab (or to the user named in the
MAILTO environment variable in the crontab, if such exists). The children copies of cron running these processes have
their name coerced to uppercase, as will be seen in the syslog and ps output.
Additionally, cron checks each minute to see if its spool directory's modtime (or the modtime on the /etc/crontab file)
has changed, and if it has, cron will then examine the modtime on all crontabs files and reload those which have changed.
Thus cron need not be restarted whenever a crontab file is modified. Note that the crontab(1) command updates the modtime
of the spool directory whenever it changes a crontab.
© てっくらのーと/mkr-note 2024