Nginx负载均衡
什么是负载均衡
负载均衡建立在现有网络结构之上,它提供了一种廉价有效透明的方法扩展网络设备和服务器的带宽、增加吞吐量、加强网络数据处理能力、提高网络的灵活性和可用性。
负载均衡,英文名称为 Load Balance,其意思就是分摊到多个操作单元上进行执行,例如 Web 服务器、FTP 服务器、企业关键应用服务器和其它关键任务服务器等,从而共同完成工作任务。
Nginx 实现负载均衡
- nginx作为负载均衡服务器,用户请求先到达nginx,再由nginx根据负载均衡配置将请求转发至Tomcat服务器,或者其他服务器都行
- nginx负载均衡服务器:192.168.1.22:80
- Tomcat1服务器:192.168.1.22:9090
- Tomcat2服务器:192.168.1.22:9091
Nginx配置负载均衡
修改 /usr/local/docker/nginx/conf 目录下的 nginx.conf 配置文件
user nginx; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; upstream myapp1 { server 192.168.75.145:9090 weight=10; server 192.168.75.145:9091 weight=10; } server { listen 80; server_name nginx.funtl.com; location / { proxy_pass http://myapp1; index index.jsp index.html index.htm; } } }
相关配置说明
定义负载均衡设备的 Ip及设备状态 upstream myServer { server 127.0.0.1:9090 down; server 127.0.0.1:8080 weight=2; server 127.0.0.1:6060; server 127.0.0.1:7070 backup; }
在需要使用负载的server节点下添加
proxy_pass http://myServer;
- upstream:每个设备的状态:
- down:表示当前的server暂时不参与负载
- weight:默认为1,weight越大,负载的权重就越大
- max_fails:允许请求失败的次数默认为1,当超过最大次数时u,返回proxy_new_upstream模块定义的错误
- fail_timeout:max_fails次失败后,暂停的时间
- backup:其他所有的非backup机器down或者忙的时候,请求backup机器,所以这台机器的压力会最轻
相关推荐
畅聊架构 2020-06-28
zllbirdonland 2020-06-16
swtIrene 2020-06-04
畅聊架构 2020-06-01
后厂村老司机 2020-04-19
azhuye 2020-11-12
liupengqwert 2020-10-28
YzhilongY 2020-08-31
crazyjingling 2020-08-16
swtIrene 2020-08-14
slovyz 2020-08-14
tinydu 2020-08-09
tinydu 2020-08-03
Studynutlee 2020-08-03
快乐de馒头 2020-07-29
yungame 2020-07-27
buaichidoufu 2020-07-28
wanjichun 2020-07-26