기본값
KeepAlive on
MaxKeepAliveRequests 100
KeepAliveTimeout 15
# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_winnt.c>
ThreadsPerChild 250
MaxRequestsPerChild 0
</IfModule>
변경한다.
KeepAlive on
MaxKeepAliveRequests 20
KeepAliveTimeout 5
# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_winnt.c>
ThreadLimit 3000
ThreadsPerChild 3000
MaxRequestsPerChild 0
</IfModule>
ThreadLimit 는 1.x 버전의 MaxClients 와 같은 기능을 하는 것 같다.
ThreadLimit 의 기본값은 1920 이며 ThreadsPerChild 는 ThreadLimit 를 넘을 수 없다.
ThreadLimit 에 대한 설명은 아래 링크를 참조한다.
http://httpd.apache.org/docs/2.0/mod/mpm_common.html#threadlimit
'Server Story.... > apache' 카테고리의 다른 글
윈도우 아파치 메모리 반환 안될경우 패치 파일 (0) | 2010.11.05 |
---|---|
아파치 트래픽 제한 ( 윈도우용 ) - 단지 설정 값만 참조할것 (0) | 2010.10.09 |
PHP.INI 내용과 각 옵션의 기능(PHP4 기준) - 뭐 비슷 하니 참고.. (0) | 2010.09.02 |
Windows용 아파치 설정하기 // 쓰레드 설정 동접 증가, (0) | 2010.08.31 |
아파치. 및 php 설치 (0) | 2010.06.28 |