Views 14153 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
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
No. Category Subject Author Date Views
74 System/OS [linux] 기존 환경설정 저장하면서 커널 컴파일.. hooni 2003.04.23 13456
73 System/OS [linux] 기본적인 설정하기(내공쌓기) hooni 2003.04.23 13993
72 System/OS [linux] 기본 명령어 (내공쌓기) hooni 2003.04.23 14333
71 System/OS [linux] 계정관리하기(내공쌓기) hooni 2003.04.23 13157
70 System/OS [linux] 간단한 vi편집기 사용 명령 hooni 2003.04.23 13456
69 System/OS [linux] 간단한 NAT 설정 script hooni 2003.04.23 12595
68 System/OS [linux] 간단한 find 명령어 설명(업데이트 해야 함) hooni 2013.04.23 9111
67 System/OS [linux] yum 업데이트 시 커널 제외하기 hooni 2014.09.11 1256
66 System/OS [linux] X환경 GNOME에서 KDE로 바꾸는 법.. hooni 2013.04.23 12365
65 System/OS [linux] Xwindow/Xmanager 사용 hooni 2003.04.23 13332
64 System/OS [linux] wget 명령 사용 예제 hooni 2020.05.26 1432
63 System/OS [linux] vi 편집기 간단한 명령과 환경설정 hooni 2003.04.23 11359
62 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 797
61 System/OS [linux] ssh에서 원격 파일 전송하기.. hooni 2013.04.23 14155
60 System/OS [linux] SSH에 대한 기본 설명과 설치/설정 hooni 2013.04.23 10492
59 System/OS [linux] split 명령어 hooni 2014.03.11 4303
Board Pagination Prev 1 ... 7 8 9 10 11 13 Next
/ 13