ServerLimit
-
아파치2.2.x 웹서버 (Apache HTTP Server) 동시 접속자 수 늘리기프로그래밍/linux 2016. 7. 22. 16:10
아파치2.2.x 웹서버 (Apache HTTP Server) 동시 접속자 수 늘리기 아파치2.2.x 버전의 `ServerLimit`는 Default = 256, Max = 20000으로 지정되어 있습니다. 자 그럼 `ServerLimit`값 조정을 해보겠습니다. 변경하고자 할 경우 Httpd.conf 에서 `/conf/extra/httpd-mpm.conf` 을 Include 처리 (리마크 제외) 하고 Httpd-mpm.conf 파일을 열고 지시자 변경합니다. # httpd.conf 에서 다음 라인 리마크 해제Include conf/extra/httpd-mpm.conf httpd-mpm.conf에서 다음은 동시접속자를 "1000" 로 지정한 예제이다.ServerLimit 1000StartServers 5M..