--with-http_stub_status_module このモジュール機能は nginx の基本情報を確認します
1、この機能モジュールがあるかどうかを確認します。
[root@slave nginx]# /usr/sbin/nginx -V
nginx バージョン: nginx/1.8。 0
gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC) でビルド
OpenSSL 1.0.1e-fips でビルド 2013 年 2 月 11 日
TLS SNI サポートが有効
引数を設定: --prefix=/usr/local /nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-ログパス=/var/log/nginx/access.log --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock
--user=nginx --group=nginx --with-http_ssl_module --with-http_flv_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/ tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/ tmp/nginx/scgi - with-pcre
[root@slave nginx]#
2、2、、在目录添加サーバー段## status {
-聞き80;
server_name status.wolf.com;
stub_status on;
access_log off;
}
}
3、ホストを追加
[root@slave nginx]# vi /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.0.203 www.wolf.com bbs.wolf.com blog.wolf.com wolf.com status.wolf.com
笔记本追加
[root@slave nginx]# vi /etc/hosts
127.0. 0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.0.203 www.wolf.com bbs.wolf.com blog.wolf.com wolf.com status.wolf.com
4 、语法检查
[root@slave nginx]# /usr/sbin/nginx -t
nginx: 設定ファイル /etc/nginx/nginx.conf の構文は問題ありません
nginx: 設定ファイル /etc/nginx/nginx.conf テスト成功しました
5、重启服务
[root@slave nginx]# /usr/sbin/nginx -s reload
6、测试
浏览器http://status.wolf.com/访问
アクティブな接続: 5
サーバーが受け入れます処理されたリクエスト
54 54 408
読み取り: 0 書き込み: 1 待機: 4
[root@slave nginx]#curl status.wolf.com
アクティブな接続: 6
サーバーは処理されたリクエストを受け入れます
55 55 414
読み取り: 0 書き込み: 1 待機中: 5
7、访问制限
##status
server {
listen 80;
server_name status.wolf.com;
location / {
stub_status on;
access_log off;
192.168.0.0/24を許可;
deny all;
}
}
8、访问ログ说明
アクティブな接続 – 活跃の接続数
サーバーは処理されたリクエストを受け入れます — 总共处処理了11989个接続 、成功创建11989次握手、总共处処理了11991个请求
読書 — 读取ゲスト端末の接続数。
書き込み — ゲスト端末への接続データの数
待機中 — キープアライブの場合、この値はアクティブ – (読み取り + 書き込み)、意思決定は Nginx すでに処理完了正在等気象下一次要求命令の命令です留接続。
以上は nginx 情報機能の使用法であり、側面の内容も含まれており、PHP 教則に関心のある友人の助けになることを望みます。