Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zyqwst/loadbalance
nginx+springboot+redis 负载均衡Session共享的实现
https://github.com/zyqwst/loadbalance
Last synced: 23 days ago
JSON representation
nginx+springboot+redis 负载均衡Session共享的实现
- Host: GitHub
- URL: https://github.com/zyqwst/loadbalance
- Owner: zyqwst
- Created: 2017-10-16T07:40:28.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-16T08:19:02.000Z (about 7 years ago)
- Last Synced: 2024-10-11T12:12:43.266Z (3 months ago)
- Language: Java
- Homepage: http://www.jianshu.com/p/e2106832f76b
- Size: 113 KB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## LoadBalance(nginx+springboot+redis 实现的负载均衡Demo)
## 说明
1. 在application.properties 添加redis相关配置
```
#spring.redis.database
spring.redis.hostname=127.0.0.1
spring.redis.port=6379
spring.redis.password=admin
spring.redis.pool.maxActive=8
spring.redis.pool.maxWait=-1
spring.redis.pool.maxIdle=8
spring.redis.pool.minIdle=0
spring.redis.timeout=0
```2. 在application.properties配置文件中修改两个不同端口并用 `mvn package spring-boot:repackage` 命令生成两个jar文件.然后java -jar 命令分别运行Demo
3. 假设我们这里分配的端口是9001和9002,然后在nginx.conf配置反向代理
Mac下nginx配置如下
```
http {
...
upstream dis{
server 127.0.0.1:9001 weight=1; //weight表示请求分配的权重
server 127.0.0.1:9002 weight=1;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://dis;
}
}
}
```4. 效果预览
+ 访问localhost:80,可以看到分配到了9001端口
![访问localhost:80](http://upload-images.jianshu.io/upload_images/2287481-e0b0d3c72644f939.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
+ 登录进去后重定向到9002端口
![登录进去后重定向到9002端口](http://upload-images.jianshu.io/upload_images/2287481-09aca315638d26d8.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
+ 刷新页面端口是9001
![刷新页面发现端口是9001](http://upload-images.jianshu.io/upload_images/2287481-bc1b807b7ac2e71d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)