내 웹서버에서 서버 상태 활성화

내 웹서버에서 서버 상태 활성화

Linux Mint 17을 실행하는 웹 서버에서 서버 상태를 활성화하고 싶습니다. 어디에 넣어야 할지 extendedstatus ON, 또 무엇을 바꿔야 할지 모르겠습니다 .

답변1

웹 브라우저를 통해 시스템에 액세스하는 방법을 묻는 것 같은데요? http://localhost/sever-status? 그렇다면 이는 웹 서버(보통 Apache)의 기능입니다. 그래서 설치해야 하고, 실행해야 하고, 파일에 구성 server-status해야 합니다 . 이 위치는 Linux Mint(Fedora의 위치)에서는 약간 다를 수 있지만 파일을 편집해야 합니다.extendededstatus/etc/httpd/conf/httpd.conf

Apache 구성 파일은 httpd.conf매우 잘 문서화되어 있으므로 여기서 "상태"를 검색하면 상태와 활성화 방법을 모두 찾을 수 있습니다. 이 파일을 편집한 후에는 Apache를 다시 시작해야 합니다.

#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
ExtendedStatus On

#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".example.com" to match your domain to enable.
#
<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost 127.0.0.1
</Location>

모듈의 주석도 제거되었는지 확인해야 합니다.

LoadModule status_module modules/mod_status.so

관련 정보