主頁(yè) > 知識(shí)庫(kù) > Nginx配置檢測(cè)服務(wù)狀態(tài)的實(shí)現(xiàn)方法

Nginx配置檢測(cè)服務(wù)狀態(tài)的實(shí)現(xiàn)方法

熱門標(biāo)簽:百度地圖標(biāo)注要不要錢 江蘇電銷外呼防封系統(tǒng)是什么 賀州市地圖標(biāo)注app 金融行業(yè)外呼線路 高德地圖標(biāo)注無(wú)營(yíng)業(yè)執(zhí)照 廣州電銷機(jī)器人系統(tǒng)圖 長(zhǎng)沙開福怎么申請(qǐng)400電話 智能電話機(jī)器人線路 東莞人工智能電銷機(jī)器人供應(yīng)商

1. 查看是否安裝檢查狀態(tài)模塊;

[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.  如未安裝,重新編譯安裝;

Ø  檢查狀態(tài)模塊;--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; ##可對(duì)該頁(yè)面的訪問者進(jìn)行過(guò)濾
   #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.測(cè)試語(yǔ)法;

[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.     輸出內(nèi)容詳解;

第一行  Active connections: 1  ——活躍的連接數(shù)量,包括等待客戶端數(shù)0
第二行 server accepts handled requests —— 總共處理了1個(gè)連接 , 成功創(chuàng)建1次握手, 總共處理了1個(gè)請(qǐng)求
第三行 Reading — 讀取客戶端的連接數(shù),Writing — 響應(yīng)數(shù)據(jù)到客戶端的數(shù)量,Waiting — 開啟 keep-alive 的情況下,這個(gè)值等于 active – (reading+writing), 意思就是 Nginx 已經(jīng)處理完正在等候下一次請(qǐng)求指令的駐留連接.

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:廊坊 洛陽(yáng) 滄州 北京 松原 玉樹 張家界 永州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Nginx配置檢測(cè)服務(wù)狀態(tài)的實(shí)現(xiàn)方法》,本文關(guān)鍵詞  Nginx,配置,檢測(cè),服務(wù),狀態(tài),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Nginx配置檢測(cè)服務(wù)狀態(tài)的實(shí)現(xiàn)方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Nginx配置檢測(cè)服務(wù)狀態(tài)的實(shí)現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章