通过nginx负载均衡访问从库tomcat7的日志

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过nginx负载均衡访问从库tomcat7的日志相关的知识,希望对你有一定的参考价值。

 

从库操作

/mnt/local/tomcat_8080 举例

1修改context.xml文件 重启tomcat

技术分享


2 建立软连接

技术分享

 

 

主库操作

修改负载均衡

vi /etc/nginx nginx.conf

worker_processes1;

events {

worker_connections1024;

}

http {

includemime.types;

default_typeapplication/octet-stream;

sendfile on;

keepalive_timeout65;

upstreamslavelog80 {

server192.168.3.215:8080;

}

 

server {

listen 80;

server_namelocalhost;

location/log80/ {

proxy_passhttp://slavelog80/;

}

}

}

 

下面是启动命令

/usr/sbin/nginx  -s reload

/usr/sbin/nginx -s stop

/usr/sbin/nginx

 

 

 

 访问主库的地址可看到从库的信息

技术分享

 

 


本文出自 “经验分享” 博客,请务必保留此出处http://fangxihang.blog.51cto.com/8477908/1979563

以上是关于通过nginx负载均衡访问从库tomcat7的日志的主要内容,如果未能解决你的问题,请参考以下文章

windows下tomcat7+nginx1.8负载均衡

Nginx 反向代理

Nginx 负载均衡反向代理

nginx的反向代理

Nginx的继续深入(日志轮询切割,重写,负载均衡等)

Tomcat +redis +nginx 搭建高性能负载均衡 集群