-
아파치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" 로 지정한 예제이다.
<IfModule mpm_prefork_module>
ServerLimit 1000
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 1000
MaxRequestsPerChild 0
</IfModule>
이제는 컴파일을 하지 않고 conf에서 쉽게 `ServerLimit`값을 쉽게 늘리세요.
'프로그래밍 > linux' 카테고리의 다른 글
Apache FIN_WAIT2 TIME_WAIT 해결 (0) 2018.12.28 아파치 Headers Server OS 숨기기 (0) 2017.07.17 YumRepo Error: All mirror URLs are not using ftp, http[s] or file (0) 2017.06.07 selinux 설정 해제하기 (0) 2017.01.18 [vsftpd] 553 Could not create file (0) 2017.01.13