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
170 System/OS [mac] OS X 엘 캐피탄에서 Soudflower 사용하기 2 file hooni 2016.10.03 878
169 System/OS [mac] Mac OS에서 재생되는 사운드를 녹음하는 방법 file hooni 2016.10.03 1442
168 System/OS 맥 OS X 에서 스크린 화면 캡쳐 단축키 (Mac Print Screen) hooni 2015.07.21 1900
167 System/OS [windows] 윈도우 사용자 계정 로그인 암호 분실, 암호 변경하는 방법 file hooni 2015.07.09 21358
166 System/OS 개인적으로 쓰고 있는 bash_profile hooni 2015.01.16 844
165 System/OS [mac][추천 무료앱] 구름 입력기 - 국내 맥 사용자를 위한 한글 대안 입력기 1 file hooni 2015.01.04 2152
164 System/OS [mac] OS X 요세미티 사용자가 많이 겪는 버그와 몇몇 불편사항 file hooni 2015.01.04 1522
163 System/OS [mac] 패키지 매니저, MacPort hooni 2015.01.03 971
162 System/OS [mac] Mac OS 패키지 매니저, HomeBrew file hooni 2015.01.03 1314
161 System/OS [linux] CentOS 에 APM 설치하기 hooni 2015.01.02 1690
160 System/OS CentOS 에서 Cacti 설치하기 hooni 2015.01.02 1764
159 System/OS [svn] 하나의 SVN에서 멀티 저장소 (One svnserve, multiple repositories) hooni 2015.01.02 1549
158 System/OS iptime 공유기 해킹 기술문서 4 file hooni 2015.01.01 1941
157 System/OS [svn] Can't convert string from native encoding to 'UTF-8' 메시지가 나오는 경우 hooni 2014.12.18 993
156 System/OS [svn] SVN trunk 변경사항 되돌리기 (SVN Rollback) hooni 2014.11.27 1564
155 System/OS SVN(Subversion) 설치와 설정 (sasl 인증 적용 포함) file hooni 2014.09.11 5667
Board Pagination Prev 1 2 3 4 5 ... 13 Next
/ 13