nugawiki

./categories/server

Apache 부하 시 KeepAlive·Timeout 조정

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

부하 시 빠른 조정 (httpd.conf)

KeepAlive Off
Timeout 8

고동시접속·짧은 요청 위주일 때 KeepAlive Off + Timeout 축소로 프로세스 점유를 줄일 수 있음.

동시접속·메모리 확인

watch 'netstat -an | grep EST | wc -l'
netstat -nap | grep :80 | grep ESTABLISHED | wc -l
ps aux | grep apache | awk '{print $6}' | awk '{total+=$1} END {print total/1024}'

./comments