nginx+apache+redis实现负载均衡、动静分离、session共享

环境centos6.5

nginx:192.168.1.202

tomcat1:192.168.1.240

tomcat2:192.168.1.201

redis:192.168.1.116

nginx安装:

yum install -y nginx

如提示包不存在,安装epel源即可

rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm

修改nginx配置文件

vim /etc/nginx/conf.d/default.conf
user nginx;
worker_processes 2;
 
error_log/usr/local/nginx/logs/nginx_error.log debug;
pid /usr/local/nginx/nginx.pid;
 
worker_rlimit_nofile 51200;
 
events {
         use epoll;
         worker_connections 51200;
}
 
http {
         includemime.types;
         default_type application/octet-stream;
         #charset gb2312;
         server_names_hash_bucket_size 128;
         client_header_buffer_size 32k;
         large_client_header_buffers 4 32k;
         client_max_body_size 8m;
         sendfile on;
         tcp_nopush on;
         tcp_nodelay on;
         keepalive_timeout 60;
         server_tokens   off;
         client_body_buffer_size  512k;
 
         gzip on;
         gzip_min_length 1k;
         gzip_buffers 16 64k;
         gzip_http_version 1.0;
         gzip_comp_leve l2;
         gzip_types text/plain application/x-javascript text/css application/xml;
         gzip_vary on;
         #limit_zone crawler $binary_remote_addr 10m;
 
         log_formataccess ‘$remote_addr - $remote_user [$time_local] "$request" ‘
         ‘$status$body_bytes_sent "$http_referer" ‘
         ‘"$http_user_agent"$http_x_forwarded_for‘;
         access_log/usr/local/nginx/logs/access.log access;
 
         upstream test {
                   server192.168.1.201:8081 weight=1 max_fails=2 fail_timeout=30s;
                   server192.168.1.240:8081 weight=1 max_fails=2 fail_timeout=30s;
         }
 
server {
         listen80;
         server_name192.168.1.202;
 
location / {
         proxy_next_upstream http_502 http_504 error timeout invalid_header;
         index  index_tel.jsp index.jsp index.html index.htm;
       proxy_pass http://test;
         proxy_redirect    off;
       proxy_set_header Host  $host;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_set_header X-Forwarded-For  $remote_addr;
         proxy_connect_timeout    5;
         proxy_send_timeout      60;
         proxy_read_timeout       5;
         proxy_buffer_size       16k;
         proxy_buffers         4 64k;
         proxy_busy_buffers_size  128k;
         proxy_temp_file_write_size 128k;
    }
 
location ~.*\.(gif|jpg|jpeg|png|bmp|swf|otf|eot|svg|ttf|woff)$
{
valid_referers  blocked 192.168.1.202;
if ($invalid_referer) {
         return421;
}
 
expires 30d;
}
 
location ~ .*\.(js|css)?$
{
root /usr/local/nginx/html;
expires 1h;
} 
 
}
}

安装jdk和tomcat(1.240、1.201配置相同)

jdk这里使用1.7.0_40版本绿色免安装的

tar -zxvf jdk-7u40-linux-x64.tar.gz  -C  /usr/local/
cat > /etc/profile.d/java.sh <<EOF
export JAVA_HOME=/usr/local/jdk1.7.0_40
export PATH=$PATH:$JAVA_HOME/bin
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=$JAVA_HOME/lib:$JRE_HOME/lib
EOF

tomcat使用7.0.52版本的

tar -zxvf apache-tomcat-7.0.52.tar.gz -C/usr/local/tomcat

tomcat-redis-session-manager组件实现session共享

wget https://github.com/downloads/jcoleman/tomcat-redis-session-manager/tomcat-redis-session-manager-1.2-tomcat-7-Java-7.jar
wget http://central.maven.org/maven2/redis/clients/jedis/2.5.2/jedis-2.5.2.jar
wget http://central.maven.org/maven2/org/apache/commons/commons-pool2/2.0/commons-pool2-2.0.jar

将下载的jar包放置tomcat的lib目录下

修改tomcat下的context.conf文件

<ValveclassName="com.orangefunction.tomcat.redissessions.RedisSessionHandlerValve"/>
   <ManagerclassName="com.orangefunction.tomcat.redissessions.RedisSessionManager"
       host="192.168.1.116"
       port="6379"
       database="0"
       maxInactiveInterval="60" />
wget http://redis.googlecode.com/files/redis-2.6.13.tar.gz
tar -zxvf redis-2.6.13.tar.gz
cd redis-2.6.13 && make && make install
make test
mkdir -pv /usr/local/redis/{bin,etc}

将src目录里面的redis-benchmark redis-check-aof redis-check-dump  redis-cli  redis-server拷贝至/usr/local/redis/bin下面

将redis.conf拷贝至/usr/local/redis/etc目录下

修改redis.conf

daemonize yes #开启后台运行
# bind 127.0.0.1 ::1注释掉
protected-mode no #关闭保护模式

测试

mkdir -pv /usr/local/tomcat/webapps/session/WEB-INF/{classes,lib}
vim index.jsp

192.168.1.240:

<%@ page language="java" %>
<html>
 <head><title>TomcatA</title></head>
 <body>
   <h1><font color="red">1.240</font></h1>
   <table border="1">
     <tr>
       <td>Session ID</td>
   <% session.setAttribute("1.240","1.240"); %>
       <td><%= session.getId() %></td>
     </tr>
     <tr>
       <td>Created on</td>
       <td><%= session.getCreationTime() %></td>
    </tr>
   </table>
 </body>
</html>

192.168.1.201

<%@ page language="java" %>
<html>
 <head><title>TomcatB</title></head>
 <body>
   <h1><font color="blue">1.201</font></h1>
   <table border="1">
     <tr>
       <td>Session ID</td>
    <%session.setAttribute("1.201","1.201"); %>
       <td><%= session.getId() %></td>
     </tr>
     <tr>
       <td>Created on</td>
       <td><%= session.getCreationTime() %></td>
    </tr>
   </table>
 </body>
</html>
时间: 2024-12-27 15:39:51

nginx+apache+redis实现负载均衡、动静分离、session共享的相关文章

Nginx+Tomcat+Keepalived+Memcache 负载均衡动静分离技术

一.概述 Nginx 作负载均衡器的优点许多,简单概括为: ①实现了可弹性化的架构,在压力增大的时候可以临时添加Tomcat服务器添加到这个架构里面去; ②upstream具有负载均衡能力,可以自动判断下面的机器,并且自动踢出不能正常提供服务的机器: Keepalived 可实现 Nginx负载均衡器双机互备,任意一台机器发生故障,对方都能够将虚拟IP接管过去. Memcache可以实现Tomcat服务器的Sission共享整个拓补如下: 注意: 1.由于服务器有限,IP相同的为同一台机.只是端

Nginx安装-反向代理-负载均衡-动静分离

安装 1.需要素材 后两个用命令下载安装 openssl-1.0.1t.tar.gzzlib -1.2.8.tar.gz 2:在/usr/src/ 下吧 " nginx-1.16.1.tar.gz " "pcre-8.37.tar.gz" 这两个文件放进去并且解压然后在pcre-8.37这个文件下先 : ./configure 在敲 make && make install pcre-conffig --verison 查看版本 下面安装nginx

如何运用PHP+REDIS解决负载均衡后的session共享问题

一.为什么要使用Session共享? 稍大一些的网站,通常都会有好几个服务器,每个服务器运行着不同功能的模块,使用不同的二级域名,而一个整体性强的网站,用户系统是统一的,即一套用户名.密码在整个网站的各个模块中都是可以登录使用的.各个服务器共享用户数据是比较容易实现的,只需要在后端放个数据库服务器,各个服务器通过统一接口对用户数据进行访问即可.但还存在一个问题,就是用户在这个服务器登录之后,进入另一个服务器的别的模块时,仍然需要重新登录,这就是一次登录,全部通行的问题,映射到技术上,其实就是各个

HAproxy负载均衡动静分离实现及配置详解

 HAproxy负载均衡动静分离实现及配置详解 HAproxy的介绍 HAProxy提供高可用性.负载均衡以及基于TCP和HTTP应用的代理,支持虚拟主机,它是免费.快速并且可靠的一种解决方案.HAProxy特别适用于那些负载特大的web站点,这些站点通常又需要会话保持或七层处理.HAProxy运行在时下的硬件上,完全可以支持数以万计的并发连接.并且它的运行模式使得它可以很简单安全的整合进您当前的架构中, 同时可以保护你的web服务器不被暴露到网络上. HAProxy实现了一种事件驱动.单一进程

.Net 站点在Windows环境借助Nginx和Redis实现负载均衡系列导航栏

.Net 站点在Windows环境借助Nginx和Redis实现负载均衡系列(一) .Net 站点在Windows环境借助Nginx和Redis实现负载均衡系列(二) .Net 站点在Windows环境借助Nginx和Redis实现负载均衡系列(三) .Net 站点在Windows环境借助Nginx和Redis实现负载均衡系列(四)

Nginx+Tomcat+Redis实现负载均衡、资源分离、session共享

CentOS安装Nginx?:http://centoscn.com/CentosServer/www/2013/0910/1593.html CentOS安装Tomcat?:http://blog.csdn.net/zhuying_linux/article/details/6583096 CentOS安装Redis?:http://www.cnblogs.com/zhuhongbao/archive/2013/06/04/3117997.html 多个Tomcat负载均衡实例:可在服务器上复

Lvs + Ngnix + Haproxy + Keepalived + Tomcat 实现三种HA软负载均衡和Tomcat Session共享

环境准备: 一.11台测试机器 hostname:v1 ~ v10   (10台测试机) ip:192.168.33.81(v1) ~ 192.168.33.90(v101) 由于在内网测试,需要搭建个内网yum源,方便安装软件.yum所在机器为192.168.33.101 二.待实现功能 下面分别使用haproxy/nginx/lvs实现HA + 负载均衡,软件环境如下: v1:33.81 nginx v2:33.82 nginx v3:33.83 tomcat v4:33.84 tomcat

nginx+apache实现负载均衡+动静分离配置(编译安装)

一.编译安装nginx cd /usr/local/src wget http://nginx.org/download/nginx-1.6.3.tar.gz tar -zxvf nginx-1.6.3.tar.gz cd nginx-1.6.3 ./configure --prefix=/usr/local/nginx --with-file-aio --with-http_ssl_module --with-http_image_filter_module --with-http_sub_m

【Linux运维-集群技术进阶】Nginx+Keepalived+Tomcat搭建高可用/负载均衡/动静分离的Webserver集群

额.博客名字有点长.. . 前言 最终到这篇文章了,心情是有点激动的. 由于这篇文章会集中曾经博客讲到的全部Nginx功能点.包含主要的负载均衡,还有动静分离技术再加上这篇文章的重点.通过Keepalived实现的HA(High Available).为什么要实现高可用呢?曾经在搭建的时候仅仅用了一台Nginxserver,这种话假设Nginxserver宕机了,那么整个站点就会挂掉.所以要实现Nginx的高可用,一台挂掉还会有还有一台顶上去.从而保证站点能够持续的提供服务. 关于负载均衡和动静