컴퓨터잡담

아파치서버에서 시작시 무엇을 불러들이나? httpd -l

by 디케 posted Sep 04, 2010
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

아파치서버에서 시작시 무엇을 불러들이나? httpd -l 


APM_Setup\Server\Apache2\conf\extra\httpd-mpm.conf

파일을 수정 하셔야 합니다.


# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
<IfModule mpm_winnt_module>
    ThreadsPerChild      150
    MaxRequestsPerChild    0
</IfModule>

이 부분을 수정하셔야 합니다.

httpd -l

명령을 실행시켜 보시면

C:\Users\OkStart7>httpd -l
Compiled in modules:
  core.c
  mod_win32.c
  mpm_winnt.c
  http_core.c
  mod_so.c

이렇게 mpm_winnt.c 를 사용합니다.