Ubuntuでタスクcronの使い方
1.配置ファイル:
/etc/crontab
自動起動ファイル:
chkconfig\sysv-rc-conf
vim /etc/crontab
# m h dom mon dow user command
18 * * * * root cd / && run-parts –report /etc/cron.hourly
24 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts –report /etc/cron.daily )
37 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts –report /etc/cron.weekly )
22 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts –report /etc/cron.monthly )
2.cronの起動、停止、再起動
sudo /etc/init.d/cron start
sudo /etc/init.d/cron stop
sudo /etc/init.d/cron restart
cronのステータスの確認
pgrep cron