CentOS 6以前
1 2 3 |
# service crond status //状態取得 # service crond start //起動 # service crond stop //停止 |
1 2 |
# chkconfig --list crond //自動起動設定の確認 # chkconfig crond on //自動起動設定 |
CentOS 7以降
1 2 3 |
# systemctl status crond //状態取得 # systemctl start crond //起動 # systemctl stop crond //停止 |
1 2 |
# systemctl is-enabled crond //自動起動設定の確認 # systemctl enable crond //自動起動設定 |
参考サイト
/etc/crontabと/etc/cron.d設定ファイルの書き方 | server-memo.net
https://www.server-memo.net/tips/etc-crontab.html