nugawiki

./categories/os

pgrep로 httpd 수 감시·재시작

업데이트 2026-07-21 조회수

httpd 프로세스 수가 임계치 이상이면 Apache 재시작.

if [ "`pgrep -x httpd | wc -l`" -ge "500" ]; then
  /usr/local/apache/bin/apachectl restart
fi
pgrep -x httpd          # 정확한 프로세스명 매칭
pgrep -c httpd          # 개수만

./comments