nginx版本:nginx-1.6.2.tar.gzsticky版本:nginx-sticky-module-1.1.tar.gz./configure--prefix=/usr/local/nginx--with-http_stub_status_module--with-http_ssl_module--with-http_realip_module--add-module=/tmp/soft/nginx-sticky-module-1.1再执行make&&makeins..
分类:
其他好文 时间:
2015-10-09 15:29:27
阅读次数:
354
1、安装监控模块 Nginx中的stub_status模块主要用于查看Nginx的一些状态信息. 本模块默认是不会编译进Nginx的,如果你要使用该模块,则要在编译安装Nginx时指定:. /configure –with-http_stub_status_module 配置文件中启动监控 ...
分类:
其他好文 时间:
2015-10-02 23:53:37
阅读次数:
392
测试环境:http://172.16.25.197:8090/nginx_status 当然要想能够访问该路径,需要再nginx.conf配置文件中启用该配置: location /nginx_status { ? ? ? ? ? ?stub_status on; ? ? ? ? ? ?access_lo...
分类:
其他好文 时间:
2015-09-22 10:25:03
阅读次数:
143
如何查看nginx运行状态及相关属性说明。 需要查看nginx是否已经加载了 http_stub_status_module模块 /usr/sbin/nginx? -V 查看nginx的安装状态 nginx.conf中加入: location /status { stub_status on; access_...
分类:
其他好文 时间:
2015-08-26 18:04:24
阅读次数:
281
Nginx是一个高性能的HTTP和反向代理服务器安装nginxNginx依赖安装pcre,支持rewriteyuminstallpcre*安装openssl,需要ssl的支持yuminstallopenssl*安装#./configure--prefix=/usr/local/nginx--with-http_ssl_module--with-http_stub_status_module
--with-pcre
#–with-h..
分类:
其他好文 时间:
2015-08-08 06:53:30
阅读次数:
144
zabbix监控之nginx1,配置NginxStatus功能,需要ngx_http_stub_status_module模块支持server{listen12345;server_name127.0.0.1;location/nginx_status{stub_statuson;access_logoff;allow127.0.0.1;denyall;}}2,配置zabbix_agentd客户端在zabbix_agentd.conf末尾添加如下配置..
分类:
其他好文 时间:
2015-07-17 23:00:51
阅读次数:
208
一、编译添加新模块1、查看以前编译安装nginx的信息/usr/local/nginx/sbin/nginx-V2、进入nginx源码目录cdnginx-1.8.03、重新编译代码和模块./configure--prefix=/usr/local/nginx--with-http_stub_status_module--with-http_ssl_module--with-file-aio--with-http_realip_modu..
分类:
其他好文 时间:
2015-07-15 13:30:15
阅读次数:
261
1. Nginx安装
1)下载Nginx: wget http://nginx.org/download/nginx-1.3.11.tar.gz /opt/
2)安装Nginx:
./configure
--user=www --group=www
--prefix=/usr/local/nginx
--with-http_stub_status_mo...
分类:
其他好文 时间:
2015-06-16 08:01:03
阅读次数:
154
nginx-V可以查看原来编译时都带了哪些参数原来的参数:--prefix=/usr/local/nginx添加的参数:--with-http_stub_status_module--with-http_ssl_module--with-http_realip_module步骤如下:
1.使用参数重新配置:
./configure--prefix=/usr/local/nginx-user=nobody-group=nobody-..
分类:
其他好文 时间:
2015-05-17 02:10:57
阅读次数:
209
Tengine主配置文件Tengine安装tarzxvftengine-2.0.3.tar.gzcdtengine-2.0.3/./configure--prefix=/data/ops/app/tengine-2.0.3/--with-http_stub_status_module--with-pcre--with-http_upstream_check_modulemake&&makeinstallecho"/data/ops/app/tengine-2.0.3/sbin/n..
分类:
其他好文 时间:
2015-02-12 14:09:13
阅读次数:
328