シェルスクリプト
説明 [#sb5e128d]
最初にapacheを停止させて、もしもプロセスが残っていたらkillallで強制終了します。
その後でapacheを起動させます。
もし失敗したら、再度Apacheを起動させるためのserviceコマンドを実行します。
スクリプト [#b49df78e]
#!/bin/bash
/etc/init.d/httpd stop
sleep 2
PSNUM=`ps aux | grep httpd | wc -l`
if [ ${PSNUM} -gt 1 ];then killall httpd ;fi
sleep 2
/etc/init.d/httpd start
if [ $? -eq 0 ];then echo "Apache restart OK";else service httpd start;exit 9;fi