개발 기록/OS & Server

[Apache 1.3] server-status

JasonM 2023. 5. 22. 10:44
반응형

Module Name : mod_status.c

Enabling Status Support : "/conf/httpd.conf"

<Location /server-status>
SetHandler server-status
order deny, allow
deny from all
allow from .yourdomain.com
</Location>

Access server statistics : http://domain/server-status

Automatic Updates : http://domain/server-status?refresh=N

Descriptions :

Server Version: Apache/1.3.14 (Unix) mod_jk/1.2.1
Server Built: Apr 27 2001 17:57:29

Current Time: Tuesday, 22-Feb-2005 17:05:51 KST
Restart Time: Tuesday, 22-Feb-2005 16:58:01 KST
Parent Server Generation: 16
Server uptime: 7 minutes 50 seconds
1 requests currently being processed, 9 idle servers

 


W_________......................................................
................................................................
................................................................
................................................................

Scoreboard Key:
"_" Waiting for Connection

"S" Starting up

"R" Reading Request

"W" Sending Reply

"K" Keepalive (read)

"D" DNS Lookup
"L" Logging

"G" Gracefully finishing

"." Open slot with no current process


PID Key:
26325 in state: W , 26326 in state: _ , 26327 in state: _
26328 in state: _ , 26329 in state: _ , 26330 in state: _
26331 in state: _ , 26332 in state: _ , 26333 in state: _
26334 in state: _ ,

that number is same server pid

 

 

"_" Waiting for Connection : 연결대기 중을 표시함

"S" Starting up : 구동되는 Child 프로세스

"R" Reading Request : Client의 요구를 읽고 있음.

"W" Sending Reply : Client의 요구에 응답 중임.

"K" Keepalive (read) : Client와 연결유지 중

"D" DNS Lookup : 설정된 DNS서버로 쿼리 중

"L" Logging : 로그파일(access_log, error_log)에 기록 중

"G" Gracefully finishing : Client의 요구에 응답완료 함.

"." Open slot with no current process : 현재 할당된 프로세스가 없음

반응형