Apache 웹서버의 MaxClients 크게하기
페이지 정보
본문
출처 : http://www.aixservice.co.kr
Apache 소스프로그램 중 src/include/httpd.h 파일의 HARD_SERVER_LIMIT 마크로 상수값을 원하는 대로 키우고 다시 Build 하면 됩니다.
기본이 256 이네요.
A. apahce 1.3
- apache_1.3.x/src/include/httpd.h 의 에서
HARD_SERVER_LIMIT 1280 // 1024로 설정시
B.apache 2.0
i. prefork
- httpd-2.0.36/server/mpm/prefork/prefork.c
DEFAULT_SERVER_LIMIT 1280
ii. worker
- httpd-2.0.36/server/mpm/worker/worker.c
DEFAULT_SERVER_LIMIT 20 //(20 * 64 = 1280) : DEFAULT_SERVER_LIMIT 16 //(16 * 16 = 256)
Apache 소스프로그램 중 src/include/httpd.h 파일의 HARD_SERVER_LIMIT 마크로 상수값을 원하는 대로 키우고 다시 Build 하면 됩니다.
기본이 256 이네요.
A. apahce 1.3
- apache_1.3.x/src/include/httpd.h 의 에서
HARD_SERVER_LIMIT 1280 // 1024로 설정시
B.apache 2.0
i. prefork
- httpd-2.0.36/server/mpm/prefork/prefork.c
DEFAULT_SERVER_LIMIT 1280
ii. worker
- httpd-2.0.36/server/mpm/worker/worker.c
DEFAULT_SERVER_LIMIT 20 //(20 * 64 = 1280) : DEFAULT_SERVER_LIMIT 16 //(16 * 16 = 256)
- 이전글APM 튜닝 21.02.10
- 다음글Error while writing to "/var/log/procmail" 21.02.10
댓글목록
등록된 댓글이 없습니다.