nginx status状態ページの配置方法と中国語の説明

1200 ワード

ninxとphp-fpmのように状態ページを作っています。inxの状態を知りたいです。また、nginxを監視するのに役立ちます。後続の監視のために、私達はまずinx状態ページがどういうことかを知る必要があります。
1.nginx statusの設定を有効にする
デフォルトのホストにlocationを追加するか、またはホストにアクセスしたいです。
 
  
server {
    listen  *:80 default_server;
    server_name _;
    location /ngx_status
    {
        stub_status on;
        access_log off;
       
#allow 127.0.0.1;
       
#deny all;
    }
}
2.nginxを再起動する
あなたの環境に合わせてドンゴンを再起動してください。
 
  
# service nginx restart
3.statusページを開く
 
  
# curl http://127.0.0.1/ngx_status
Active connections: 11921
server accepts handled requests
 11989 11989 11991
Reading: 0 Writing: 7 Waiting: 42
4.nginx status詳細
 
  
active connections �C
server accepts handled requests ― 11989 , 11989 , 11991
reading ― .
writing ―
waiting ― keep-alive , active �C (reading+writing), Nginx .