Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
cron による apache(httpd) の再起動と死活監視。
もし httpd プロセスが存在しない場合は、httpd を起動する。
/etc/cron.d/root.cron
# # httpd restart # 0 5 * * * root /etc/init.d/httpd restart
# # httpd start if process not found # 5 * * * * root ps ax | grep -v grep | grep -q httpd || ( /etc/init.d/httpd start && mail -s 'httpd start' hoge@example.com )