본문 바로가기
IT/System Engineering

Apache Maxclients 설정

by Jany 2013. 2. 8.
반응형

Apache 1.3

perl -pi -e "s/#define DEFAULT_SERVER_LIMIT 256/#define DEFAULT_SERVER_LIMIT 2000/g" ./server/mpm/prefork/prefork.c

perl -pi -e "s/#define DEFAULT_SERVER_LIMIT 16/#define DEFAULT_SERVER_LIMIT 128/g" ./server/mpm/worker/worker.c

 

Apache 2.2

/etc/httpd/conf/extra

-rw-r--r-- 1 root root 4522 10월 12 17:28 httpd-mpm.conf

 

<IfModule mpm_prefork_module>

    StartServers          5

    MinSpareServers       5

    MaxSpareServers      10

    MaxClients          2000

    MaxRequestsPerChild   0

</IfModule>

반응형

'IT > System Engineering' 카테고리의 다른 글

MySQL Error Code  (0) 2013.03.22
[JAVA] JVM OutofMemory 발생시 자동 dump 생성 JVM 옵션  (0) 2013.02.27
MySQL GRANT에 사용되는 priv_type  (0) 2013.01.18
logrotate로 Tomcat 로그 rotate 하기  (0) 2012.06.28
xcopy  (0) 2012.06.19

댓글