Server-side development

[웹서버]Apache http 서버 MPM(Multi-Processing Modules) 확인방법

트밀 2023. 2. 15. 20:57

방법1

서버에 접속해서 httpd -v, apachectl -v를 입력한다. 

[@localhost]$ apachectl -v
//or
[@localhost]$ httpd -v

방법2

그런데 안나오는 경우도 있다. 그런 경우는 다음과 같이 친다. (대문자 v로 쳐야 한다. )

[@localhost]$ apachectl -V | grep "Server MPM"

결과

Server MPM:     prefork/worker/event(worker의 변종)

정말 다양한 모듈들이 있다. by Official Site

 

참고

MPM소개 https://httpd.apache.org/docs/2.4/mpm.html

모듈목록 https://httpd.apache.org/docs/2.4/mod/