nginx 添加http_stub_status_module模块


Posted in Servers onMay 25, 2022

1. stub_status 作用说明

编译选项 作用
–with-http_stub_status_module Nginx的客户端状态

2.查看现有 nginx 编译参数

./nginx -V
# 如果没有我们需要的模块,例如本次试验添加的 –with-http_stub_status_module ,那么则需要重新编译安装一下

nginx 添加http_stub_status_module模块

3.使用参数重新配置configure,在原有基础上添加上 --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二进制文件

# 找到 nginx 安装包目录 /root/nginx-1.10.1/objs ,将 nginx 文件复制到原本的 /usr/local/nginx/sbin/nginx
cp /root/nginx-1.10.1/objs/nginx /usr/local/nginx/sbin/

nginx 添加http_stub_status_module模块

7.重新启动nginx,查看编译参数

./nginx -s reload
./nginx -V

8. 参考官网

地址:https://nginx.org/libxslt/en/docs/http/ngx_http_stub_status_module.html

8.1 修改配置文件

文件目录:/usr/local/nginx/conf

nginx 添加http_stub_status_module模块

# 在文件中添加新的 location
location /nginx_status {
	stub_status;
}

# 解释说明:
	nginx_status	这是自定义命名的,访问的时候添加这个字段访问
	stub_status;	这个是固定参数

nginx 添加http_stub_status_module模块

8.2 浏览器访问

http://192.168.169.131/nginx_status
# 访问内容结果如下图

nginx 添加http_stub_status_module模块

# 解释说明:
1)Active connections-活跃连接数
        The current number of active client connections including Waiting connections.

(2)accepts-已接受的客户端连接总数
        The total number of accepted client connections.

(3)handled-已处理的连接总数
        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-客户端连接总数
        The total number of client requests.

(5)Reading-读取请求头的当前连接数
        The current number of connections where nginx is reading the request header.

(6)Writing-将响应写回客户端的当前连接数
        The current number of connections where nginx is writing the response back to the client.

(7)Waiting-等待请求的当前空闲客户端连接数
        The current number of idle client connections waiting for a request.

参考官网地址:https://nginx.org/libxslt/en/docs/http/ngx_http_stub_status_module.html

到此这篇关于nginx 添加http_stub_status_module模块的文章就介绍到这了!


Tags in this post...

Servers 相关文章推荐
本地通过nginx配置反向代理的全过程记录
Mar 31 Servers
Nginx访问日志及错误日志参数说明
Mar 31 Servers
详解Nginx 工作原理
Mar 31 Servers
配置nginx 重定向到系统维护页面
Jun 08 Servers
Nginx配置根据url参数重定向
Apr 11 Servers
nginx location 带斜杠【 / 】与不带的区别
Apr 13 Servers
Windows server 2012搭建FTP服务器
Apr 29 Servers
排查Tomcat进程假死的问题
May 06 Servers
阿里云国际版 使用Nginx作为HTTPS转发代理服务器
May 11 Servers
Nginx本地配置SSL访问的实例教程
May 30 Servers
openEuler 搭建java开发环境的详细过程
Jun 10 Servers
apache虚拟主机配置的三种方式(小结)
Jul 23 Servers
docker 制作mysql镜像并自动安装
May 20 #Servers
阿里云服务器Ubuntu 20.04上安装Odoo 15
May 20 #Servers
Apache SeaTunnel实现 非CDC数据抽取
May 20 #Servers
apache ftpserver搭建ftp服务器
May 20 #Servers
服务器间如何实现文件共享
May 20 #Servers
Nginx限流和黑名单配置
May 20 #Servers
Nginx利用Logrotate实现日志分割
May 20 #Servers
You might like
PHP生成静态页面详解
2006/11/19 PHP
《PHP编程最快明白》第三讲:php数组
2010/11/01 PHP
从零开始学YII2框架(三)扩展插件yii2-gird
2014/08/20 PHP
smarty模板引擎基础知识入门
2015/03/30 PHP
php使用yield对性能提升的测试实例分析
2019/09/19 PHP
javascript显示用户停留时间的简单实例
2013/08/05 Javascript
node.js适合游戏后台开发吗?
2014/09/03 Javascript
JavaScript中的方法调用详细介绍
2014/12/30 Javascript
基于jQuery实现的美观星级评论打分组件代码
2015/10/30 Javascript
jQuery添加和删除输入文本框标签代码
2016/05/20 Javascript
angular动态删除ng-repaeat添加的dom节点的方法
2017/07/20 Javascript
JS运动特效之同时运动实现方法分析
2018/01/24 Javascript
jquery应用实例分享_实现手风琴特效
2018/02/01 jQuery
Vue 2.5.2下axios + express 本地请求404的解决方法
2018/02/21 Javascript
nodejs连接mysql数据库及基本知识点详解
2018/03/20 NodeJs
小程序实现列表点赞功能
2018/11/02 Javascript
自定义Vue中的v-module双向绑定的实现
2019/04/17 Javascript
使用js和canvas实现时钟效果
2020/09/08 Javascript
[59:30]完美世界DOTA2联赛PWL S3 access vs LBZS 第二场 12.20
2020/12/23 DOTA
复习Python中的字符串知识点
2015/04/14 Python
在Python中使用SQLite的简单教程
2015/04/29 Python
Python操作MySQL数据库的三种方法总结
2018/01/30 Python
通过实例解析Python文件操作实现步骤
2020/09/21 Python
用canvas画心电图的示例代码
2018/09/10 HTML / CSS
linux面试题参考答案(10)
2016/10/26 面试题
MYSQL支持事务吗
2013/08/09 面试题
会计专业自荐信
2013/12/02 职场文书
学校消防安全制度
2014/01/30 职场文书
优秀本科毕业生自荐信
2014/07/04 职场文书
青年标兵事迹材料
2014/08/16 职场文书
求职自我评价范文100字
2014/09/23 职场文书
党建工作整改措施
2014/10/28 职场文书
企业员工辞职信范文
2015/05/12 职场文书
Win11 S Mode版本泄露 正式上线后叫做Windows 11 SE
2021/11/21 数码科技
Spring Security使用单点登录的权限功能
2022/04/03 Java/Android
vue postcss-px2rem 自适应布局
2022/05/15 Vue.js