Nginx安装nginx_upstream_check_module模块

30 篇文章 0 订阅

1.从GitHub - yaoweibin/nginx_upstream_check_module: Health checks upstreams for nginx下载zip,将zip文件上传至linux服务器的/usr/local路径下。

注意这里匹配的nginx版本号,我的nginx版本为1.12.2,因此一会儿需要使用check_1.12.1+.patch

2.解压zip

unzip -d ./ nginx_upstream_check_module-master.zip

3.停止nginx,并切换至Nginx根目录,安装nginx_upstream_check_module模块

patch -p1 < /usr/local/nginx_upstream_check_module-master/check_1.12.1+.patch

4.重新配置模块

./configure --prefix=/usr/local/nginx-1.12.2 --add-module=/usr/local/nginx_upstream_check_module-master
#若有增加其他模块,则追加如下,否则会被移除
--add-module=/usr/local/fastdfs-nginx-module/src/


make && make install 

5.确认配置

/usr/local/nginx-1.12.2/sbin/nginx -V

 6.修改配置文件,增加:

upstream webhost{
         server localhost:8080 ;
         server 192.168.14.136:8080;
        #对name这个负载均衡条目中的所有节点,每个3秒检测一次,请求2次正常则标记 realserver状态为up,
        #如果检测 5 次都失败,则标记 realserver的状态为down,超时时间为2秒
        check interval=3000 rise=1 fall=5 timeout=2000 default_down=false type=http;
        check_keepalive_requests 100;

    }
#检查状态,可在浏览器访问http://xxxx/nstatus
        location /nstatus {
                check_status;
                access_log off;
                #allow IP;
                 #deny all;
        }

7.切换至/usr/local/nginx-1.12.2/sbin,启动nginx

#指定配置文件
./nginx -c /usr/local/nginx-1.12.2/conf/nginx.conf

#启动nginx
./nginx -s reload

8.在浏览器查看状态

停止一台,再查看 

感谢原作者,点击查看原文

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值