码迷,mamicode.com
首页 >  
搜索关键字:stub_status    ( 164个结果
HTTP stub_status 模块
参考文档HTTPstub_status模块http://nginx.org/en/docs/http/ngx_http_status_module.htmlserver{listen80;server_name127.0.0.1;denyall;location/NginxStatus{stub_statuson;allow127.0.0.1;allowA;allowB;denyall;}access_logoff;}
分类:Web程序   时间:2016-03-14 02:09:05    阅读次数:236
nginx安装
下载nginx-1.9.12传到/usr/local/src安装pcreopensslyuminstallpcre*yuminstallopenssl*解压nginxtar-zxvfnginx-1.9.12.tar.gz./configure--prefix=/usr/local/nginx-1.9.12--with-http_ssl_module--with-http_spdy_module--with-http_stub_status_module--with-pcremakemakein..
分类:其他好文   时间:2016-03-03 15:05:12    阅读次数:185
nginx状态页两种方式笔记:一
状态页stub_status{on|off};仅能用于location上下文;location/status{stub_statuson;allow172.16.0.0/16;denyall;}Activeconnections:11921serveracceptshandledrequests119891198911991Reading:0Writing:7Waiting:42activeconnections–活跃的连接数量serveracceptshandledre..
分类:其他好文   时间:2016-03-01 14:50:41    阅读次数:214
zabbix管理七之监控nginx性能
zabbix管理七之监控nginx性能说明:使用zabbix监控nginx,首先nginx需要配置ngx_status在编译安装nginx时需要使用--with-http_stub_status_module参数在nginx的配置文件nginx.conf里添加如下:location/nginx_status{ stub_statuson; access_logoff; allow127.0.0.1; allow27.1..
分类:其他好文   时间:2016-01-26 18:42:57    阅读次数:234
自动化安装Nginx-1.6.2
#!/bin/bash #ADDModule #1:nginx-upstream-fair # Install_dir="/usr/local/nginx" Download_dir="/home/tools" Nginx_Major_Version="1.6" Nginx_Minor_Version="2" Nginx_Configure="./configure--prefix=/usr/local/nginx--with-http_stub_status_module--with-http_..
分类:其他好文   时间:2015-12-17 14:26:17    阅读次数:182
LANMP架构安装支持库和常用编译参数
Nginx编译安装参数./configure--prefix=/usr/local/nginx--group=nginx--user=nginx--with-http_stub_status_module--with-http_ssl_moduleMySQL5.6编译安装参数:cmake-DCMAKE_INSTALL_PREFIX=/usr/local/mysql-DMYSQL_UNIX_ADDR=/usr/local/mysql/data/tmp/mysql.sock-DDEFAU..
分类:其他好文   时间:2015-11-18 10:48:41    阅读次数:276
Nginx反向代理
一、安装./configure--user=nginx--group=nginx--prefix=/usr/local/nginx--with-http_stub_status_module--with-http_ssl_module--with-http_realip_module二、配置Nginx的反向代理功能,其实就是一个upstream模块加一段主机SERVER定义。
分类:其他好文   时间:2015-11-18 02:05:53    阅读次数:174
tengine install
./configure --prefix=/home/admin/local/tengine --with-http_stub_status_module --with-http_ssl_module --with-http_upstream_check_module --with-http_con...
分类:其他好文   时间:2015-11-13 22:13:57    阅读次数:262
nginx performance monitor
nginx performance monitorNginx中的stub_status模块主要用于查看Nginx的一些状态信息示例Active connections: 2server accepts handled requests12055 12055 34907Reading: 0 Writi...
分类:其他好文   时间:2015-11-04 01:55:17    阅读次数:348
编译nginx时,那些模块功能应该要
--prefix=/usr/local/nginx-1.3.1 有利于统一放置nginx的所有文件,方便管理,强烈建议设置--with-http_stub_status_module 支持统计,也有利于监控系统用来监控nginx的性能--with-http_ssl_module 支持ssl加密...
分类:其他好文   时间:2015-10-10 17:20:06    阅读次数:188
164条   上一页 1 ... 11 12 13 14 15 ... 17 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!