<-
Apache > HTTP Server > Documentation > Version 2.2 > 모듈

Please note

This document refers to a legacy release (2.2) of Apache httpd. The active release (2.4) is documented here. If you have not already upgraded, please follow this link for more information.

You may follow this link to go to the current version of this document.

아파치 모듈 mod_status

가능한 언어:  en  |  ja  |  ko  |  tr 

이 문서는 최신판 번역이 아닙니다. 최근에 변경된 내용은 영어 문서를 참고하세요.
설명:서버 활동과 성능에 대한 정보를 제공한다
상태:Base
모듈명:status_module
소스파일:mod_status.c

요약

Status 모듈은 서버 관리자에게 서버의 상태를 보여준다. 쉽게 읽을 수 있는 HTML 페이지로 현재 서버통계를 보여준다. 필요하다면 (표준을 따르는 브라우저에서) 페이지를 자동으로 갱신할 수 있다. 현재 서버 상태를 컴퓨터가 읽을 수 있는 간단한 목록으로 보여줄 수도 있다.

알려주는 정보는:

표준 아파치에는 "(*)"로 표시한 통계를 얻을 수 없다. 이 정보를 보려면 컴파일시 옵션을 사용해야 한다.

주제

지시어들

top

Status 사용하기

foo.com 도메인에서 접근한 브라우저에게만 상태를 보여주려면 httpd.conf 설정파일에 다음과 같이 추가한다

<Location /server-status>
SetHandler server-status

Order Deny,Allow
Deny from all
Allow from .foo.com
</Location>

이제 웹브라우저로 http://your.server.name/server-status 페이지에 접근하면 서버 통계를 볼 수 있다.

top

자동 갱신

브라우저가 "재갱신"을 지원한다면 status 페이지를 자동으로 갱신할 수 있다. N 초마다 갱신하려면 http://your.server.name/server-status?refresh=N 페이지를 사용하라.

top

컴퓨터가 읽을 수 있는 Status 파일

http://your.server.name/server-status?auto에서 컴퓨터가 쉽게 읽을 수 있는 status 파일을 얻을 수 있다. 이 형식은 아파치 /support 디렉토리에 있는 log_server_status Perl 프로그램과 같이 자동으로 실행하는 프로그램에 유용하다.

mod_status를 서버와 같이 컴파일하였다면 디렉토리 설정파일을 (예를 들어, .htaccess) 포함하여 모든 설정파일에서 핸들러를 사용할 수 있다. 그래서 사이트에 보안 문제가 발생할 수 있다.
top

ExtendedStatus 지시어

설명:각 요청에 대한 자세한 상태 정보를 기록한다
문법:ExtendedStatus On|Off
기본값:ExtendedStatus Off
사용장소:주서버설정
상태:Base
모듈:mod_status
지원:ExtendedStatus는 아파치 1.3.2 이후에만 있다.

이 설정은 서버 전체에 적용되며, 가상호스트별로 키고 끌 수 없다. 자세한 상태 정보를 모으면 서버가 느려질 수 있다.

top

SeeRequestTail 지시어

설명:Determine if mod_status displays the first 63 characters of a request or the last 63, assuming the request itself is greater than 63 chars.
문법:SeeRequestTail On|Off
기본값:SeeRequestTail Off
사용장소:주서버설정
상태:Base
모듈:mod_status
지원:Available in Apache 2.2.7 and later.

The documentation for this directive has not been translated yet. Please have a look at the English version.

가능한 언어:  en  |  ja  |  ko  |  tr 

top

Comments

Notice:
This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our mailing lists.
Comments are disabled for this page at the moment.