一句话介绍今天我们要干什么:
通过Nginx+tomcat+redis实现反向代理 、负载均衡及session同步
对于负载均衡听的次数比较多,但一直比较陌生,今天尝试着去了解了一下,加深对这个概念的认识,并在此做一个简单的总结。
通过修改端口,分别启动2个Tomcat。
打开server.xml修改三处:
<Server port="8006" shutdown="SHUTDOWN">
<Connector port="8081" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<Connector port="8010" protocol="AJP/1.3" redirectPort="8443" />
</Server>
建立一个简单的项目nginx,复制example下的index.html,改一下标题。
http://127.0.0.1:8080/nginx/index.html
http://127.0.0.1:8081/nginx/index.html
Paste_Image.png
下载nginx并解压,接下去我们打开cmd,进入nginx的目录下,输入start nginx。我们可以看到一个窗口一闪而过,这样nginx就已经被开启了,我们在任务管理器中可以找到它的进程。现在我们在浏览器中输入localhost。可以看到出现一个页面。
Paste_Image.png
之前我们是直接访问tomcat服务器,现在我想通过nginx访问tomcat,这个需要去修改nginx的核心配置文件,在其目录下的conf文件夹下的nginx.conf文件。
我们就知道我们需要修改的文件中的server部分,这是它原有的代码,我删除了它注释部分。现在我们就能明白为什么输入localhost,它访问的是它欢迎页面即index.html。
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:8080
root html;
index index.html index.htm;
}
下面我们对这段代码进行一些小小修改。就是将请求转向我们定义的服务器。随后在cmd中输入命令nginx -s reload即可重启nginx。输入对应的地址,反复刷会出现两个tomcat来回切,切换的频率由weigth来决定。
upstream test{
server localhost:8080 weight=1;
server localhost:8081 weight=1;
}
server {
listen 81;
server_name localhost;
location / {
proxy_pass http://test;
root html;
index index.html index.htm;
}
Paste_Image.png
Paste_Image.png
session 不同步问题
做一个简单的测试,在我们写好的web工程页面做如下修改:
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
这是第一个tomcat,sessionID是:<% out.print( session.getId()); %>
</body>
</html>
并进行访问:
Paste_Image.png Paste_Image.png
session 丢失了。。。。。
查了一些资料后发现可以配Redis使用,解决这个问题。
网友评论