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.在浏览器查看状态
停止一台,再查看
感谢原作者,点击查看原文