端くれプログラマの備忘録 Apache [Apache] サーバーステータスページを表示する

[Apache] サーバーステータスページを表示する

mod_status によりサーバーの統計情報を表示することができる。設定は簡単。

# vi /etc/httpd/conf/httpd.conf
末尾に追加
<Location /server-status>
    SetHandler server-status
    Order Deny,Allow
    Deny from all
    Allow from xx.xx.xx.xx  運営者のみに制限する
</Location>

# service httpd configtest
# service httpd restart

ステータスページを表示
http://example.com/server-status

ステータスページを自動更新(1秒おき)
http://example.com/server-status?refresh=1

参考サイト

mod_status – Apache HTTP サーバ バージョン 2.4
https://httpd.apache.org/docs/2.4/ja/mod/mod_status.html

2.7 サーバステータスの監視機能
http://software.fujitsu.com/jp/manual/manualfiles/M060041/B1WN7141/02Z200/ihs02/ihs00014.htm

稼働状況の表示(ステータス情報表示)
http://itdoc.hitachi.co.jp/manuals/link/cosmi_v0950/03Y1830D/EY180051.HTM