nginx?添加http_stub_status_module模塊
1. stub_status 作用說明
| 編譯選項 | 作用 |
|---|---|
| –with-http_stub_status_module | Nginx的客戶端狀態(tài) |
2.查看現(xiàn)有 nginx 編譯參數(shù)
./nginx -V # 如果沒有我們需要的模塊,例如本次試驗添加的 –with-http_stub_status_module ,那么則需要重新編譯安裝一下

3.使用參數(shù)重新配置configure,在原有基礎(chǔ)上添加上 --with-http_stub_status_module
configure 文件是在安裝包目錄下的文件,具體可參考 centos 7 安裝 nginx
./configure --prefix=/usr/local/nginx --with-http_realip_module --with-http_ssl_module --with-pcre --with-stream --with-http_stub_status_module
4.將原來的 nginx 文件備份
cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak
5. 編譯
make # 這里是需要 make 編譯,不用 make install
6. 替換nginx二進(jìn)制文件
# 找到 nginx 安裝包目錄 /root/nginx-1.10.1/objs ,將 nginx 文件復(fù)制到原本的 /usr/local/nginx/sbin/nginx cp /root/nginx-1.10.1/objs/nginx /usr/local/nginx/sbin/

7.重新啟動nginx,查看編譯參數(shù)
./nginx -s reload ./nginx -V
8. 參考官網(wǎng)
地址:https://nginx.org/libxslt/en/docs/http/ngx_http_stub_status_module.html
8.1 修改配置文件
文件目錄:/usr/local/nginx/conf

# 在文件中添加新的 location
location /nginx_status {
stub_status;
}
# 解釋說明:
nginx_status 這是自定義命名的,訪問的時候添加這個字段訪問
stub_status; 這個是固定參數(shù)

8.2 瀏覽器訪問
http://192.168.169.131/nginx_status # 訪問內(nèi)容結(jié)果如下圖

# 解釋說明:
1)Active connections-活躍連接數(shù)
The current number of active client connections including Waiting connections.
(2)accepts-已接受的客戶端連接總數(shù)
The total number of accepted client connections.
(3)handled-已處理的連接總數(shù)
The total number of handled connections. Generally, the parameter value is the same as acceptsunless some resource limits have been reached (for example, the worker_connections limit).
(4)requests-客戶端連接總數(shù)
The total number of client requests.
(5)Reading-讀取請求頭的當(dāng)前連接數(shù)
The current number of connections where nginx is reading the request header.
(6)Writing-將響應(yīng)寫回客戶端的當(dāng)前連接數(shù)
The current number of connections where nginx is writing the response back to the client.
(7)Waiting-等待請求的當(dāng)前空閑客戶端連接數(shù)
The current number of idle client connections waiting for a request.
參考官網(wǎng)地址:https://nginx.org/libxslt/en/docs/http/ngx_http_stub_status_module.html
到此這篇關(guān)于nginx 添加http_stub_status_module模塊的文章就介紹到這了,更多相關(guān)nginx 添加http_stub_status_module內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Debian下搭建Nginx和Tomcat服務(wù)器實現(xiàn)負(fù)載均衡的方案
這篇文章主要介紹了Debian下搭建Nginx和Tomcat服務(wù)器實現(xiàn)負(fù)載均衡的方案,其主要思想依然是動靜分離并且以Nginx來進(jìn)行反向代理這樣的路子,需要的朋友可以參考下2015-12-12
關(guān)于nginx沒有跳轉(zhuǎn)到upstream地址的解決
這篇文章主要介紹了關(guān)于nginx沒有跳轉(zhuǎn)到upstream地址的解決,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-09-09
通過nginx實現(xiàn)訪問服務(wù)器指定目錄下圖片資源
這篇文章為大家詳細(xì)主要介紹了如何通過nginx實現(xiàn)訪問服務(wù)器指定目錄下圖片資源,文中通過圖文進(jìn)行了詳細(xì)的講解,有需要的小伙伴可以了解下2023-10-10
Nginx中return和rewrite的寫法及區(qū)別淺析
在Nginx中,return和rewrite都用于重定向,但有所區(qū)別,return立即終止請求并返回指定HTTP狀態(tài)碼,不額外請求,rewrite則重寫URI并引發(fā)新請求,需要的朋友可以參考下2024-09-09
nginx+lua+redis實現(xiàn)限流的示例代碼
本文主要介紹了nginx+lua+redis實現(xiàn)限流的示例代碼,包括HttpRedis模塊、HttpRedis2Module模塊和lua-resty-redis庫,具有一定的參考價值,感興趣的可以了解一下2025-12-12

