如何檢視 Nginx 的工作狀態

2021-05-08 01:42:54 字數 1351 閱讀 4933

鏈結來自:http://wiki.codemongers.com/nginxchsstubstatusmodule?highlight=%28status%29

這個模組能夠獲取nginx自上次啟動以來的工作狀態

此模組非核心模組,需要在編譯的時候手動新增編譯引數 --with-http_stub_status_module

配置說明

location /nginx_status

語法:stub_statuson

預設值:none

作用域:location

建立乙個 location 區域啟用 stub_status

"stubstatus" 模組返回的狀態資訊跟 mathopd's 的狀態資訊很相似. 返回的狀態資訊如下:

active connections: 291

server accepts handled requests

16630948 16630948 31070465

reading: 6 writing: 179 waiting: 106

active connections

-- 對後端發起的活動連線數

server accepts handled requests

-- nginx 總共處理了 16630948 個連線, 成功建立 16630948 次握手 (證明中間沒有失敗的), 總共處理了 31070465 個請求 (平均每次握手處理了 1.8個資料請求)

reading

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

writing

-- nginx 返回給客戶端的header資訊數

waiting

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

,意思就是nginx說已經處理完正在等候下一次請求指令的駐留連線

檢視Oracle工作狀態

使用putty工具登入omu伺服器,putty工具的使用方法請參見putty工具操作。執行su oracle命令,輸入 oracle 使用者的密碼,將當前使用者切換為 oracle 使用者。執行命令sqlplus as sysdba,以系統使用者登入資料庫。螢幕輸出如下 sql plus relea...

Nginx 檢視執行時狀態

無需重啟伺服器。在虛擬主機 假設為www.example.com 的配置檔案中加上 location nginxstatus則直接可以通過訪問 www.example.com nginxstatus檢視資訊 但是需要注意,在這裡我們開啟了安全驗證。auth basic nginx status 密碼...

檢視埠 Linux如何檢視埠狀態

netstat命令各個引數說明如下 t 指明顯示tcp埠 u 指明顯示udp埠 l 僅顯示監聽套接字 所謂套接字就是使應用程式能夠讀寫與收發通訊協議 protocol 與資料的程式 p 顯示程序識別符號和程式名稱,每乙個套接字 埠都屬於乙個程式。n 不進行dns輪詢,顯示ip 可以加速操作 即可顯示...