1. 미들웨어이야기/02. Apache
Apache 버전 및 MPM 확인 방법
OSSW(Open Source System SoftWare
2014. 7. 20. 05:39
Apache 버전 및 MPM 확인 방법은 아래와 같다.
1. Apache 버전 확인 방법
-> 명령어를 실행하면 아래 내용처럼 Apache 버전과 설치된 날짜까지 확인이 가능함.
root@test1 [/apache/testsvc/bin]# ./httpd -v
Server version: Apache/2.0.55 centOS_Apache-based_Web_Server
Server built: Apr 17 2014 18:00:54
2. Apache MPM 확인 방법
-> Apache는 다중처리모듈 방식으로써 크게 prefork와 worker 방식을 지원한다.
아래 내용을 보면 worker방식으로 설치되어 있다.
root@test1 [/apache/testsvc/bin]# ./httpd -l
Compiled in modules:
core.c
worker.c
http_core.c
mod_so.c
root@test1 [/apache/testsvc/bin]
by 차규철