Apache 2.4
===========================================================================================
# worker MPM
# StartServers: 아파치 기동시 생성될 프로세스 개수
# MinSpareThreads: 최소로 유지할 쓰레드 개수
# MaxSpareThreads: 최대로 유지할 쓰레드 개수
# ThreadsPerChild: 프로세스당 생성할 쓰레드 개수
# MaxRequestWorkers: 최대 쓰레드 개수(=maxclient, 최대 처리개수), MaxRequestWorkers = ThreadsPerChild x Process count
# MaxConnectionsPerChild: 쓰레드가 최대 처리하는 요청건수(지정한만큼 수행하면 사라짐, 0은 무제한)
#MaxRequestWorkers: 1024
#ThreadsPerChild: 32
#최대 프로세스 개수: 32
<IfModule mpm_worker_module>
StartServers 8
MinSpareThreads 256
MaxSpareThreads 256
ThreadsPerChild 32
MaxRequestWorkers 1024
MaxConnectionsPerChild 1000
</IfModule>
#MaxRequestWorkers: 1024
#ThreadsPerChild: 64
#최대 프로세스 개수: 16
<IfModule mpm_worker_module>
StartServers 8
MinSpareThreads 512
MaxSpareThreads 512
ThreadsPerChild 64
MaxRequestWorkers 1024
MaxConnectionsPerChild 1000
</IfModule>
#MaxRequestWorkers: 2048
#ThreadsPerChild: 64
#최대 프로세스 개수: 32
<IfModule mpm_worker_module>
StartServers 8
MinSpareThreads 512
MaxSpareThreads 512
ThreadsPerChild 64
MaxRequestWorkers 2048
MaxConnectionsPerChild 1000
</IfModule>
#MaxRequestWorkers: 2048
#ThreadsPerChild: 128
#최대 프로세스 개수: 16
<IfModule mpm_worker_module>
StartServers 8
MinSpareThreads 1024
MaxSpareThreads 1024
ThreadsPerChild 128
MaxRequestWorkers 2048
MaxConnectionsPerChild 1000
</IfModule>
Apache 2.2
===========================================================================================
# worker MPM
# StartServers: 아파치 기동시 생성될 프로세스 개수
# MaxClient: 최대 쓰레드 개수(최대 처리개수), MaxClient = ThreadsPerChild x Process count
# MinSpareThreads: 최소로 유지할 쓰레드 개수
# MaxSpareThreads: 최대로 유지할 쓰레드 개수
# ThreadsPerChild: 프로세스당 생성할 쓰레드 개수
# MaxRequestsPerChild: 쓰레드가 최대 처리하는 요청건수(지정한만큼 수행하면 사라짐, 0은 무제한)
#MaxRequestWorkers: 1024
#ThreadsPerChild: 32
#최대 프로세스 개수: 32
<IfModule mpm_worker_module>
StartServers 8
MaxClients 1024
MinSpareThreads 256
MaxSpareThreads 256
ThreadsPerChild 32
MaxRequestsPerChild 1000
</IfModule>
#MaxRequestWorkers: 1024
#ThreadsPerChild: 64
#최대 프로세스 개수: 16
<IfModule mpm_worker_module>
StartServers 8
MaxClients 1024
MinSpareThreads 512
MaxSpareThreads 512
ThreadsPerChild 64
MaxRequestsPerChild 1000
</IfModule>
#MaxRequestWorkers: 2048
#ThreadsPerChild: 64
#최대 프로세스 개수: 32
<IfModule mpm_worker_module>
StartServers 8
MaxClients 2048
MinSpareThreads 512
MaxSpareThreads 512
ThreadsPerChild 64
MaxRequestsPerChild 1000
</IfModule>
#MaxRequestWorkers: 2048
#ThreadsPerChild:
#최대 프로세스 개수: 16
<IfModule mpm_worker_module>
StartServers 8
MaxClients 2048
MinSpareThreads 1024
MaxSpareThreads 1024
ThreadsPerChild 64
MaxRequestsPerChild 1000
</IfModule>
=================================================================================
'일' 카테고리의 다른 글
JBoss EAP 7 - access log 설정 (0) | 2017.09.01 |
---|---|
JBoss EAP 6 - access log 설정 (0) | 2017.09.01 |
workers.properties (0) | 2017.09.01 |
JAVA 옵션 (0) | 2017.09.01 |
workers.properties 옵션 내용 (0) | 2017.05.08 |