OS

[apache] 자동재시작

꼬장e 2015. 9. 26. 12:28

#vi apache_auto_restart.sh


while ( true ) ; do
  if [ "`ps -ef | grep -v grep | wc -l`" -ge "400" ] ; then
    service httpd restart
    date >> /etc/httpd/logs/apacherestart.log
  fi
  sleep 5
done


조건문 설명

  gt(크다), le(작거나 같다), lt(작다), eq(같다)


백그라운드 실행 ( &붙이면 백그라운드 실행 )

  sh apache_auto_restart.sh &


정상실행중인지 확인

  ps -ef  | grep apache_auto_restart.sh