搭建Nginx+Tomcat 负载均衡

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建Nginx+Tomcat 负载均衡相关的知识,希望对你有一定的参考价值。

nginx:nginx-1.8.0.tar.gz   

Tomcat:apache-tomcat-8.0.0-RC10.tar.gz

 

客户端192.168.52.40

Nginx192.168.52.73

Tomcat1192.168.52.65

Tomcat2192.168.52.67

 

#gzip  on;

    upstream tomcat_server {

         server 192.168.52.65:8080;

         server 192.168.52.67:8080;

 

location / {

            root   html;

            index  index.html index.htm;

            proxy_pass http://tomcat_server;

        }

 

如果出现下面错误则说明upstream放错位置了,应该放在http模块里面但必须在server模块外面:
nginx: [emerg] "upstream" directive is not allowed herein /etc/nginx/nginx.conf

 

tomcat                             技术分享

新建一个new目录,写个index.html

 

技术分享

更改访问的根目录,在</Host>前插入最后一句


以上是关于搭建Nginx+Tomcat 负载均衡的主要内容,如果未能解决你的问题,请参考以下文章

Nginx+Tomcat搭建负载均衡

Centos7搭建nginx+tomcat负载均衡

Nginx+Tomcat搭建高性能负载均衡集群

Nginx+Tomcat搭建高性能负载均衡集群

Nginx+Tomcat搭建高性能负载均衡集群

负载均衡环境搭建(nginx和tomcat)