nginx tomcat负载均衡配置

步骤一:到nginx官网下载nginx,我是下载的最新版本nginx/Windows-1.9.10,下载链接http://nginx.org/en/download.html。


步骤二:将下载下来的文件解压,打开nginx-1.9.10  conf目录,修改nginx.conf。找到#gzip  on;这句代码

在代码下面配置要代理的tomcat

upstream localhost {    

server localhost:8081 weight=1;

server localhost:8082 weight=2;  

    } 


    server {

        listen       9000;    //默认端口是80被占用了,所以改成9000了

        server_name  localhost;


        #charset koi8-r;


        #access_log  logs/host.access.log  main;


        location / {

            root   html;

            index  index.html index.htm;

proxy_connect_timeout   3;  

proxy_send_timeout      30;  

proxy_read_timeout      30;

proxy_pass http://localhost;  

        }

在location配置里面加上红色字体代码;

配置好之后到nginx-1.9.10目录下shift+鼠标右键,在此处打开命令窗口(window系统),会看到弹出一个dos命令窗口,

通过命令nginx -t可以看下测试是否成功;

nginx命令:

nginx -t;    //查看测试是否成功

start nginx;    //启动nginx

nginx -s stop;    //停止nginx


步骤三:准备2个tomcat,修改里面的端口号,一个是8081,另一个是8082(就是上面要代理的tomcat的端口号),修改2个tomcat  webapps目录下index.jsp,在两个页面上加上标识,方便等下测试看是访问的哪个tomcat;


步骤四:启动nginx和tomcat,然后在浏览器访问localhost:9000(这个端口号是上面nginx的端口号),可以看到浏览器有时候访问的是8081端口号的tomcat,有时候访问的是8082端口号的tomcat。如果是这样,就表示ok了。


如有错误,请大神指点!


你可能感兴趣的:(nginx tomcat负载均衡配置)