nginx status模組說明

2021-08-28 23:39:29 字數 761 閱讀 3812

在nginx編譯安裝時選上這個--with-http_stub_status_module模組

active connections(實時活動連線數): 8 

server accepts handled requests

156475 156475 240859

reading: 0 writing: 1 waiting: 7

上面資訊的描述

active connections 表示nginx正在處理的活動連線數8個

server 表示nginx啟動到現在共處理了 156475 個連線

accepts 表示nginx啟動到現在共成功建立 156475 次握手

handled requests 表示總共處理了 240859 次請求

請求丟失數 = 握手數 - 連線數 ,可以看出目前為止沒有丟失請求

reading:nginx 讀取到客戶端的 header 資訊數

writing:nginx 返回給客戶端 header 資訊數

//(開啟keep-alive的情況下,這個值等於 active - (reading+writing))

# vim nginx.conf

server 

location /php-fpm_status

access_log /data/wwwlogs/zabbix.php-fpm.log;

}

nginx啟用nginx status狀態詳解

在預設主機裡面加上location或者你希望能訪問到的主機裡面。server 2.重啟nginx請依照你的環境重啟你的nginx service nginx restart3.開啟status頁面 curl 4.nginx status詳解 active connections 活躍的連線數量 se...

啟用nginx status狀態詳解

在預設主機裡面加上location或者你希望能訪問到的主機裡面。server 請依照你的環境重啟你的nginx service nginx restart curl active connections 11921 server accepts handled requests 11989 1198...

CentOS 啟用nginx status狀態詳解

server systemctl restart nginx curl active connections 1 server accepts handled requests 3 3 3 reading 0 writing 1 waiting 0 active connections 活躍的連線數...