1、准备工作nginx-1.6.0.tar.gzhttpd-2.2.23.tar.gzDirectorServer:10.0.2.201RealServer:10.0.2.203RealServer:10.0.2.2042、DirectorServer上配置nginx#tarzxvfnginx-1.6.0.tar.gz#cdnginx-1.6.0#./configure--prefix=/usr/local/nginx--with-http_stub_status_module--wi..
分类:
其他好文 时间:
2014-09-17 15:32:43
阅读次数:
212
12.安装nginx所需的pcre库:tar-zxvfpcre-8.31.tar.gzcdpcre-8.31./configuremake&&makeinstallcd../13.安装Nginx:tar-zxvfnginx-1.5.8.tar.gzcdnginx-1.5.8./configure--user=www--group=www--prefix=/usr/local/nginx--with-http_stub_status_module--with-http_ssl_..
分类:
数据库 时间:
2014-09-04 03:01:48
阅读次数:
962
pcre是一个perl的正则表达式的库。
在linux中要设置源码安装的路径要设置--prefix=/安装目录
nginx查看安装的编译参数,使用nginx -V
--with-http_stub_status_module 这是设置nginxstatus功能,以监控nginx的当前状态。
nginx的配置文件的结构
main(全局设置)指令将影响其他所有设置
events
...
分类:
其他好文 时间:
2014-09-02 14:17:04
阅读次数:
174
安装nginx:yum-yinstallpcre*tar-zxvfnginx-1.6.0.tar.gzcdnginx-1.6.0/mkdir/usr/local/nginx/./configure--prefix=/usr/local/nginx/--with-http_stub_status_module#开启NginxStatus功能,监控nginx当前状态make&&makeinstall至此,安装完成配置nginx:usernobodyno..
分类:
其他好文 时间:
2014-09-01 15:49:04
阅读次数:
285
Nginx升级版本或者重新编译增加参数这里我们重新编译下,增加nginx用户和组先创建用户#useraddnginx开始编译#cd/usr/local/nginx-1.6.1#./configure--user=nginx--group=nginx--prefix=/usr/local/nginx--with-http_ssl_module--with-http_stub_status_module--with-http_gzip_..
分类:
其他好文 时间:
2014-08-26 11:52:36
阅读次数:
322
Zabbix之监控Nginx状态信息nginx需要支持http_stub_status_module编译的时候需要使用--with-http_stub_status_moduleyum默认支持此选项1.配置nginxstuats源码:vimnginx.confyum:vim/etc/nginx/conf.d/default.conf#andaddthefollowingtoyourserverblocklocation/nginx_status{s..
分类:
其他好文 时间:
2014-08-22 18:15:19
阅读次数:
316
一、安装#yum install gd-devel##./configure --prefix=/usr/local/nginx \# --with-debug \# --with-http_stub_status_module ...
分类:
其他好文 时间:
2014-08-18 14:17:42
阅读次数:
154
Nginx访问控制========================================================基于用户基于主机一、基于用户的访问控制1.检测是否有htpasswd命令建立口令文件查看口令文件2.实现认证[用户][root@Jeffery~]#vim/usr/local/nginx/conf/nginx.conf3.访问测试检测配置文件,重新加载访..
分类:
其他好文 时间:
2014-08-14 04:00:58
阅读次数:
330
Apache服务器状态监控模块开启默认是禁止外网访问,如果更改了权限,可能导致信息泄露ExtendedStatusOn<Location/server-status>SetHandlerserver-statusOrderdeny,allow#DenyfromallAllowfrom.example.com</Location>默认访问地址http://site/server-statusnginx..
分类:
Web程序 时间:
2014-08-11 15:20:53
阅读次数:
272
1、windows下nginx查看并发链接数要使用stable版本2、配置代码:location /status { stub_status on; }3、访问地址:http://localhost/status最开始用的mainLine版本,网上看了很多配置教程,都测试不通过(配置没问题)但...