ホームページ  >  記事  >  運用・保守  >  サービスのステータスを検出するように Nginx を構成する方法

サービスのステータスを検出するように Nginx を構成する方法

WBOY
WBOY転載
2023-05-31 11:13:062323ブラウズ

1. ステータス チェック モジュールがインストールされているかどうかを確認します。

[root@localhost ~]# nginx -v
nginx version: nginx/1.12.2
built by gcc 4.8.5 20150623 (red hat 4.8.5-36) (gcc)
configure arguments: --prefix=/usr/local/nginx --with-http_sub_module

2. インストールされていない場合は、再コンパイルしてインストールします。

ø ステータス モジュールの確認; --with-http_stub_status_module

[root@localhost ~]# cd /usr/local/src/nginx-1.12.2/       
[root@localhost ~]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module
[root@localhost ~]# make && make install

3. nginx 設定ファイルの編集;

[root@localhost ~]# vim /usr/local/nginx/conf/nginx.conf
server {
  listen 80;
  server_name localhost;
  #access_log logs/host.access.log main;
 
  location /nginx_status {
  stub_status on;
  access_log off;
   #allow 127.0.0.1; ##可对该页面的访问者进行过滤
   #deny all;
   }
  }
[root@localhost ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@localhost ~]# nginx -s reload

4. テスト構文;

[root@localhost ~]# curl http://192.168.10.110:80/nginx_status
active connections: 1
server accepts handled requests
 1 1 1
reading: 0 writing: 1 waiting: 0

5. 出力内容の詳細な説明;

最初の行のアクティブな接続: 1 ——番号待機中を含むアクティブな接続の数 クライアントの数 0
2 行目のサーバーは処理されたリクエストを受け入れます—合計 1 つの接続が処理され、1 つのハンドシェイクが正常に作成され、合計 1リクエストは処理されました
3 行目の読み取り - クライアントからの接続数の読み取り、書き込み - クライアントへの応答データの数、待機 - キープアライブがオンになっている場合、この値は active - (読み取り書き込み) に等しく、これは nginx が次の要求コマンドを待機している常駐接続の処理後であることを意味します。

以上がサービスのステータスを検出するように Nginx を構成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はyisu.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。