nginx + tomcat实现负载均衡

  • 来源:
  • 更新日期:2018-04-25

摘要:nginx 是一款非常优秀的代理,静态资源,负载均衡的软件。用它来和tomcat结合,正好可以弥补tomcat静态资源处理能力弱的缺点。 配置nginx  1.首先在nginx的conf目录下新建文件夹vhost 用来存放虚拟主机的配置文件(nginx.conf 中默认是有包含该文件夹下的所有  conf文件)  mkdir /usr/local/nginx/conf/vhost  

nginx 是一款非常优秀的代理,静态资源,负载均衡的软件。用它来和tomcat结合,正好可以弥补tomcat静态资源处理能力弱的缺点。

y2vzmvxcck4.jpg

配置nginx

1.首先在nginx的conf目录下新建文件夹vhost 用来存放虚拟主机的配置文件(nginx.conf 中默认是有包含该文件夹下的所有 conf文件)

mkdir/usr/local/nginx/conf/vhost

2.新建配置文件

viwww.domain.com.conf

内容如下

upstreamdumain_server{ server127.0.0.1:80weight=1;#服务器1ip权重为1 server118.244.197.83:80weight=1;#服务器2ip权重为1 } server{ listen80; server_namewww.domian.com; location/{ roothtml; indexindex.jspindex.htmlindex.htm; proxy_redirectoff; proxy_set_headerHost$host; proxy_set_headerX-Real-IP$remote_addr; proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for; proxy_passhttp://domian_server; } error_page500502503504/50x.html;#配置错误页面 location=/50x.html{ roothtml; } }

3.检查配置文件是否有错

nginx-t

4.如果配置文件没错重启nginx

servicenginxrestart

5.测试

访问www.domain.com 多次刷新 看是否会切换页面,如果会的话 第一步就成功啦!

6.配置session共享

session问题是负载均衡必须解决的问题,但是当集群数量较多时,不建议采用session共享,因为很耗资源。