萝卜地里的兔子 2017-12-12 06:44 采纳率: 50%
浏览 2460
已结题

Nginx负载均衡upstream这样配置对不对

......
upstream testserver {
server 192.168.0.85:8080 weight=3;
server 192.168.0.85:8082 weight=3;
}

upstream ttt{
     server 192.168.0.85:8082 weight=3;
     ip_hash;
}

server {
    listen       80;
    server_name  hadoop1;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location /hzyl{
     proxy_pass http://ttt;
    }

    location /HisImpServ{

        proxy_pass http://testserver;
            }


            ...............

            这样配置了以后
            我访问 /hyzl 和/HisImpServ都在转圈圈
  • 写回答

1条回答

  • COCO_AS 2017-12-12 07:00
    关注

    转圈圈应该和nginx配置没有关系,直接访问你的后端服务器试试,能正常访问么?

    顺便说一下,

    weightip_hash不能同时用

    upstream ttt{
         server 192.168.0.85:8082 weight=3;
         ip_hash;
    }
    
    

    参考:

    Until versions 1.3.1 and 1.2.2, it was not possible to specify a weight for servers using the ip_hash load balancing method.

    评论

报告相同问题?

悬赏问题

  • ¥50 汇编语言除法溢出问题
  • ¥50 C++实现删除N个数据列表共有的元素
  • ¥15 Visual Studio问题
  • ¥15 state显示变量是字符串形式,但是仍然红色,无法引用,并显示类型不匹配
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波
  • ¥15 针对曲面部件的制孔路径规划,大家有什么思路吗