./categories/server
Apache 부하 시 KeepAlive·Timeout 조정
부하 시 빠른 조정 (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}'
관련 링크: https://app.notion.com/p/03861aea4b004e258d7d124a0d596882
./comments