1.下载nginx_upstream_check_module模块
nginx_upstream_check_module–master.zip
wget https://codeload.github.com/yaoweibin/nginx_upstream_check_module/zip/master
解压到
2. 安装nginx
略
3. 补丁安装
由于我这边安装nginx版本为nginx1.21版本。所以选择的补丁版本为check_1.20.1+.patch
注意:由于我这边nginx_upstream_check_module是自己创建的文件路径。所以需要移动到
patch –p1 < /usr/local/nginx_upstream_check_module–master/check_1.20.1+.patch
相关文章: 【Linux】关于patch命令中参数P的说明_cannot find file to patch_Mr_EvanChen的博客-CSDN博客
4: 重新配置nginx
./configure--add-module=/usr/local/nginx_upstream_check_module-master
make && make install
5:配置nginx
upstream lunxun2{
server 127.0.0.1:9595;
server 127.0.0.1:8081;
#对name这个负载均衡条目中的所有节点,每个3秒检测一次,请求2次正常则标记 realserver状态为up,
#如果检测 5 次都失败,则标记 realserver的状态为down,超时时间为1秒
check interval=10000 rise=2 fall=5 timeout=1000 type=http;
check_http_send “GET /test/test HTTP/1.1rnHost: 127.0.0.1rnrn”;
check_http_expect_alive http_2xx http_3xx;
}
特别注意: type=http最好改为tcp
#检查状态,可在浏览器访问http://xxxx/nstatus
location /nstatus {
check_status;
access_log off;
#allow IP;
#deny all;
}
参考资料:http://www.jdccie.com/?p=3566
原文地址:https://blog.csdn.net/ganjing222/article/details/129422865
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_40768.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!