# event MPM <-- 이벤트 MPM 사용하는 경우에!!!!!
# StartServers: initial number of server processes to start
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestWorkers: maximum number of worker threads
# MaxConnectionsPerChild: maximum number of connections a server process serves
# before terminating
<IfModule mpm_event_module>
StartServers 3
MinSpareThreads 75
MaxSpareThreads 250
ThreadsPerChild 25
MaxRequestWorkers 400
MaxConnectionsPerChild 0
</IfModule>
위 내용이 기본(원본) 내용이며, 수치를 조정하면 됩니다.
더 상세한 조정 방법은? 구글링 하셔서 상세확인 후 조정 바랍니다.
어설프게 수치를 조절하면? 아파치 서버 접속이 굉장히 느려지는 경우가 발생됩니다.
필자도 어설픈 수치조절로 인하여? 기본값으로 다시 복귀시켰답니다.
- 참고 : https://m.blog.naver.com/sthox18/222076358121
...[더 보기]