端口号影响nginx负载均衡
nginx的负载均衡通过upstream实现,代码如下:
upstream xxx {
server 192.168.1.1:8080 weight=2;
server 192.168.1.2:8080 weight=2;
}
通过以上这种方式能实现基本的均衡,当时当以上配置改为如下配置时
upstream xxx {
server 192.168.1.1:8080 weight=2;
server 192.168.1.2:8088 weight=2;
}
负载均衡就不均衡了,端口的不同能影响流量的分配,在网上搜索资料,也未找到相关说明。
相关推荐
畅聊架构 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