时间:2021-05-19
1.查看是否安装检查状态模块;
[root@localhost ~]# nginx -Vnginx version: nginx/1.12.2built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC)configure arguments: --prefix=/usr/local/nginx --with-http_sub_module2. 如未安装,重新编译安装;
Ø 检查状态模块;--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 install3.编辑nginx 的配置文件;
[root@localhost ~]# vim /usr/local/nginx/conf/nginx.confserver { 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; ##可对该页面的访问者进行过滤 #deny all; } }[root@localhost ~]# nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful[root@localhost ~]# nginx -s reload4.测试语法;
[root@localhost ~]# curl http://192.168.10.110:80/nginx_statusActive connections: 1server accepts handled requests 1 1 1Reading: 0 Writing: 1 Waiting: 05. 输出内容详解;
第一行 Activeconnections:1 ——活跃的连接数量,包括等待客户端数0 第二行server accepts handled requests —— 总共处理了1个连接 , 成功创建1次握手, 总共处理了1个请求 第三行 Reading — 读取客户端的连接数,Writing — 响应数据到客户端的数量,Waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文主要介绍一些Nginx做图片服务器的简单配置,但不包括Nginx的安装部署以及实现原理。配置步骤下载nginxWindowsnginx安装教程及简单实践配置
Nginx的stub_status模块用于查看Nginx的基本状态信息。模块实现的功能通过这个模块,可以看到如下的Nginx状态信息:Activeconnect
本文实例讲述了Android编程实现检测当前电源状态的方法。分享给大家供大家参考,具体如下:检测到现在在电源状态:IntentFiltermIntentFilt
上一篇介绍了在Linux的CentOS下如何安装Nginx服务器,并且实现在Linux上访问Nginx服务器。本篇主要介绍VMVare下基于NAT模式的网络配置
ubuntu下的nginx服务器配置详解1.nginx服务器的安装sudoapt-getinstallnginx2.nginx服务器的启动sudo/etc/in