기존 iPlanet 설정을 OHS로 변경하던 중 찾아낸 내용입니다.
# Iplanet 설정
<IfModule mpm_worker_module>
StartServers 10
ServerLimit 250
MinSpareThreads 75
MaxSpareThreads 250
ThreadsPerChild 60
MaxRequestWorkers 15000
MaxConnectionsPerChild 0
Mutex fcntl:${ORACLE_INSTANCE}/servers/${COMPONENT_NAME}/logs
</IfModule>
# OHS 설정
KeepAlive On
MaxKeepAliveRequests 15000
KeepAliveTimeout 3
<keep-alive> 설정에 있는 threads를 Oracle docs에서 찾은 내용으로 keep-alive 처리를 담당하는 thread 개수라고 언급되어 있음
threads | 0 or 1 | The number of keep-alive subsystem threads. The value can be from 1 to 128. The default value is 1. |
max-connections | 0 or 1 | The maximum number of concurrent keep-alive connections that the server supports. The value can be from 1 to 1048576. The default value is 200. |
timeout | 0 or 1 | The timeout (in seconds) after which an inactive keep-alive connection can be closed. The value can be from 0.001 to 3600. The default value is 30 seconds. |
'■ 서버와 배포 > OHS' 카테고리의 다른 글
OHS서버 설정 - MatchExpression과 ErrorDocument, IfModule (0) | 2018.09.10 |
---|