zoukankan      html  css  js  c++  java
  • Nginx一台机器上负载均衡多个Tomcat

    默认你的机器上安装了Java环境,解压了Tomcat,安装了Nginx。默认这几个tomcat都部署在一台机器上。

    对于Tomcat需要改三个地方【你部署的所有tomcat这三个地方都不能一样,如果你部署在不同机器上就不用改了

    vi [你的tomcat路径]/conf/server.xml

    修改SHUTDOWN端口:

    修改HTTP端口:

    修改AJP端口:

     

    【我只用了俩Tomcat,一台保持默认,另外一台端口分别为:8006,8081,8010】

    我还改了tomcat/webapps/ROOT/index.jsp,以示区别两个服务器。

    下面修改Nginx:

    vi [你的Nginx路径]/conf/nginx.conf
    复制代码
    http{
        upstream myapp{
            server 192.168.127.128:8080 weight=1;
            server 192.168.127.128:8081 weight=1;
        }
        Server{
                listen       80;
                server_name  myapp;
    
            location / {
                proxy_pass http://myapp;
                proxy_set_header   Host             $host;
                proxy_set_header   X-Real-IP        $remote_addr;
                proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
            }
    }
    

    }

    复制代码

    注意:proxy_pass http://后面的名字要与upstream后面的名字一致。 

    启动Tomcat和Nginx

    访问虚拟机地址。前提要开放防火墙80端口

    刷新:

  • 相关阅读:
    原码, 反码, 补码 详解
    位移运算符
    ASP.NET中httpmodules与httphandlers全解析
    MySQL count
    真正的能理解CSS中的line-height,height与line-height
    IfcEvent
    IfcWorkCalendarTypeEnum
    IfcSingleProjectInstance
    转换模型
    IfcTypeProduct
  • 原文地址:https://www.cnblogs.com/jpfss/p/10092844.html
Copyright © 2011-2022 走看看