上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 42 下一页
摘要: 1)错误 如果后端服务器返回报错,负载均衡仍然会将请求分配到出错的web服务器,因为负载均衡只会根据调度算法将请求分配到后端,不会进行判断后端是否正常 2)解决错误的模块语法 Syntax: proxy_next_upstream error | timeout | invalid_header | 阅读全文
posted @ 2020-09-01 16:07 六月OvO 阅读(911) 评论(0) 推荐(0)
摘要: 状态概述 down 当前的server暂时不参与负载均衡 backup 预留的备份服务器 max_fails 允许请求失败的次数 fail_timeout 经过max_fails失败后, 服务暂停时间 max_conns 限制最大的接收连接数 1.down状态配置测试 [root@lb01 ~]# 阅读全文
posted @ 2020-09-01 14:41 六月OvO 阅读(181) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/chenlifan/p/13591837.html 接上 [root@lb01 ~]# vim /etc/nginx/conf.d/node_proxy.conf upstream web { server 172.16.1.7:80 ; server 阅读全文
posted @ 2020-08-31 21:30 六月OvO 阅读(1429) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/chenlifan/p/13591837.html 接上 1.修改配置文件 [root@lb01 ~]# vim /etc/nginx/conf.d/node_proxy.conf upstream web { server 172.16.1.7:80 阅读全文
posted @ 2020-08-31 21:12 六月OvO 阅读(174) 评论(0) 推荐(0)
摘要: 调度算法概述 轮询 按时间顺序逐一分配到不同的后端服务器(默认) weight 加权轮询,weight值越大,分配到的访问几率越高 ip_hash 每个请求按访问IP的hash结果分配,这样来自同一IP的固定访问一个后端服务器 url_hash 按照访问URL的hash结果来分配请求,是每个URL定 阅读全文
posted @ 2020-08-31 20:49 六月OvO 阅读(193) 评论(0) 推荐(0)
摘要: 1.语法模块 ngx_http_upstream_module Syntax: upstream name { ... } Default: — Context: http upstream backend { server backend1.example.com weight=5; server 阅读全文
posted @ 2020-08-31 20:46 六月OvO 阅读(192) 评论(0) 推荐(0)
摘要: 1.为什么做负载均衡 当我们的Web服务器直接面向用户,往往要承载大量并发请求,单台服务器难以负荷,我使用多台Web服务器组成集群,前端使用Nginx负载均衡,将请求分散的打到我们的后端服务器集群中,实现负载的分发。那么会大大提升系统的吞吐率、请求性能、高容灾 往往我们接触的最多的是SLB(Serv 阅读全文
posted @ 2020-08-31 19:04 六月OvO 阅读(245) 评论(0) 推荐(0)
摘要: [root@lb01 ~]# vim /etc/nginx/proxy_params proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For 阅读全文
posted @ 2020-08-31 18:55 六月OvO 阅读(148) 评论(0) 推荐(0)
摘要: 反向代理模式 Nginx配置模块 http、websocket、https、tomcat、Java程序 ngx_http_proxy_module fastcgi(php程序) ngx_http_fastcgi_module uwsgi(python程序) ngx_http_uwsgi_module 阅读全文
posted @ 2020-08-31 18:47 六月OvO 阅读(1917) 评论(0) 推荐(0)
摘要: 下面用到的包全在这里 链接:https://pan.baidu.com/s/1aYdKzZY3m3jEnC8bWK3OwA 提取码:d0am https://www.cnblogs.com/chenlifan/p/13567092.html https://www.cnblogs.com/chenl 阅读全文
posted @ 2020-08-26 20:48 六月OvO 阅读(345) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 42 下一页