Web Server

아파치 통계 페이지 보기

_침묵_ 2008. 6. 3. 00:47

참고 :http://httpd.apache.org/docs/2.0/ko/mod/mod_status.html

 

테스트 환경 :

# ./apachectl -v
Server version: Apache/2.2.3
Server built:   Dec  2 2006 16:21:38

 

설정 파일 변경 :

  1. {APACHE_HOME}/conf/httpd.conf수정
    • httpd.conf 거의 끝 부분에 보면 extra 쪽 conf 파일들을 include 하도록 되어 있는데,
      extra/httpd-info.conf이 부분의 주석 처리를 해제해준다. (제껀 387라인)
  2. {APACHE_HOME}/conf/extra/httpd-info.conf수정
    • httpd.conf에서 httpd-info.conf를 읽도록 수정한 상태(위 1번에서 하는 작업)에서 이 파일을 수정한다.
    • <Location /server-status> 절에서 Allow from .example.com -> Allow from all로 수정했음
    • ExtendedStatus On에 대해 주석 해제
    • server-status로 검색해보면 쉽게 찾을 수 있을 것이다.

 

재기동 :

./apachectl stop

./apachectl start

 


'Web Server' 카테고리의 다른 글

HTTP 요청 타입  (0) 2008.06.23
lighttpd 웹서버  (0) 2007.06.09
iPlanet Web Server 6.0 Performance Tuning, Sizing, ..  (0) 2006.06.17