Contents

조회 수 14154 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
1. 압축을 막 풀은 소스루트에서

    $ tar xvzfp apache_1.3.9.tar.Z
    $ cd apache1.3.9
    # status 모듈을 추가 
    $ vi Apache_Home/src/Configuration 
      Rule STATUS=yes                       /* Yes 로 되어 있는지 확인한다 */
      Module status_module mod_status.o     /* status 모듈 추가 */  

2. 재 모듈 컴파일
    $ ./configure --enable-rule=SHARED_CORE --enable-module=so --prefix=/apache --add-module=Apache_Home/src/modules/standard/mod_status.c 
    $ make; make install

3. 인스톨된 아파치루트에서
    $ vi Apache_Home/conf/http.conf
      ServerType standalone
      ResourceConfig conf/srm.conf
      AccessConfig conf/access.conf
      ExtendedStatus On 
      ServerName 192.168.100.2                        # 도메인 대신 웹서버 IP 숫자로 기입
      DirectoryIndex index.htm index.html

    $ vi Apache_Home/conf/access.conf
      <Location /server-status>
        SetHandler server-status
        Order deny,allow
        Deny from all
        Allow from 192.168.100.1                # 도메인 대신 클라이언트 IP 숫자로 기입, 또는 모두 허락
      </Location> 

    $ /usr/local/apache/bin/apachectl restart

4. 테스팅
    접속:        http://192.168.100.2/server-status 
    갱신주기:        http://192.168.100.2/server-status?refresh=N:N
    정보:        Current Time, Restart Time, Server uptime,Total accesses,CPU Usage등
    주의사항:        만약 refresh 까지만 입력하면, 계속 refresh 를 하여 웹브라우저 사용이 불가능 해진다. 
                status 를 사용하기 위해서는 데몬모드로 아파치가 작동하고 있어야만 한다.
                아파치를 standalone 방식이 아닌 inetd 모드로 아파치를 작동시켰다면 mod_status
                를 사용할 수 없다.


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
873 System/OS [mac] Homebrew/rvm/cocoapod setting hooni 2017.07.29 1003
872 System/OS [mac] Charlesproxy 간단한 설정 내용~ hooni 2013.11.12 12332
871 System/OS [macos] How to Fix ‘You Shut Down Your Computer Because of a Problem’ file hooni 2022.06.01 794
870 System/OS [linux] 한글 URL 인식할 수 있게 아파치(Apache) 설정 (mod_url.c 설치) hooni 2013.04.23 13067
869 System/OS [linux] 프로세스의 stat 상태에 대한 설명 hooni 2013.04.23 10762
868 System/OS [linux] 프로세스 상태확인(ps) hooni 2003.04.23 12711
867 Develop [linux] 프로세스 관련 시스템콜 hooni 2003.04.23 7827
866 System/OS [linux] 프로그램 설치방법 (내공쌓기) hooni 2003.04.23 13433
865 System/OS [linux] 패킷의 소스 주소 바꾸기 hooni 2003.04.23 18792
864 System/OS [linux] 패킷 스니퍼링 hooni 2003.04.23 16323
863 System/OS [linux] 파일내 문자열 찾아 바꾸기 hooni 2013.04.23 12195
862 System/OS [linux] 특정 문자열 포함된 파일 찾는 명령어 hooni 2013.10.16 30618
Board Pagination Prev 1 ... 21 22 23 24 25 26 27 28 29 30 ... 98 Next
/ 98