nginx负载均衡配置
测试服务器 tomcat 7.0.47 nginx 1.6.2
首先需要部署nginx服务器 假设为http://localhost:100080
两台tomcat服务器 http://localhost:7080 http://localhost:8080
在nginx 配置文件nginx.conf中修改如下
http block中添加upstream block:
http{
upstream test.fourfire.com {
server localhost:8080;
server localhost:7080;
}
server block修改:
server {
listen 10080;
xxxxx
location / {
proxy_pass http://test.fourfire.com;
}
}
}
修改完毕 执行sudo ./nginx -s reload 即可
若需要设置不同tomcat权重不同的负载均衡
只需要修改为
server localhost:8080 wegiht=2; 然后sudo ./nginx -s reload 即可 这样访问8080端口的请求/7080端口请求 比例约为2:1
相关推荐
swtIrene 2020-08-14
slovyz 2020-08-14
tinydu 2020-08-03
yungame 2020-07-04
廖先贵 2020-06-23
畅聊架构 2020-06-10
魏莉的微 2020-06-07
后厂村老司机 2020-06-01
后厂村老司机 2020-05-08
后厂村老司机 2020-04-25
yungame 2020-04-19
wxthillwill 2020-04-10
tinydu 2020-03-27
yungame 2020-03-23
yungame 2020-03-01
快乐de馒头 2020-02-26
tinydu 2020-02-01
zllbirdonland 2020-01-29
zllbirdonland 2020-01-06