转载

Apache添加JK模块实现tomcat负载均衡

一.搭建原理介绍

1.web访问tomcat两种方式

Apache添加JK模块实现tomcat负载均衡

2.JK模块介绍

Apache添加JK模块实现tomcat负载均衡

3.AJP原理介绍,比较http方式区别

Apache添加JK模块实现tomcat负载均衡

二.搭建介绍

单机系统:Centos7

1.安装java环境

Apache添加JK模块实现tomcat负载均衡

rpm包安装即可rpm -ivh jdk-8u121-linux-x64.rpm

Apache添加JK模块实现tomcat负载均衡

2.安装tomcat

本文为搭建tomcat负载均衡,所以启动两个tomcat实例

Apache添加JK模块实现tomcat负载均衡

解压拷贝到/usr/local/tomcat/

tar zxf apache-tomcat-8.5.35.tar.gz

cp apache-tomcat-8.5.35 /usr/local/tomcat

cp -r apache-tomcat-8.5.35 /usr/local/tomcat

cd /usr/local/tomcat/

创建tomcat集群 mkdir /usr/local/cluster,拷贝tomcat到系群里,命名实例1

Apache添加JK模块实现tomcat负载均衡

配置实例1:7080

修改tomcat配置文件

Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡

添加测试页面:index.jsp

Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡

注:

将默认的WEB-INF和index.jsp拷到新建的testcluster下

修改WEB-INF下的web.xml,在最下面加上<distributable/>,实现se'ssion共享,所有节点通过广播共享session

Apache添加JK模块实现tomcat负载均衡

启动tomcat实例1并测试

Apache添加JK模块实现tomcat负载均衡

用同样的方法设置实例2,将端口改为8080

Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡

![]

Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡

启动tomcat实例2并测试

Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡

3.安装apache

××× http://httpd.apache.org/ httpd-2.4.37.tar.gz

下载组件http://apr.apache.org/ apr-1.6.5.tar.gz apr-util-1.6.1.tar.gz

Apache添加JK模块实现tomcat负载均衡

yum install -y gcc

yum install -y pcre-devel lua-devel libxml2-devel

tar apr-1.6.5.tar.gz

cd apr-1.6.5/

./configure --prefix=/usr/local/apr

make

make install

yum install expat-devel -y

tar zxf apr-util-1.6.1.tar.gz

cd apr-util-1.6.1/

./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr

make

make install

组件安装完成后,安装apache

cd httpd-2.4.37/

./configure --prefix=/usr/apache24 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util

make

make install

启动apache

/usr/apache24/bin/apachectl start

/usr/apache24/bin/apachectl stop

/usr/apache24/bin/apachectl start

浏览器输入190.168.0.250

显示 it works! 正常

4.安装JK模块

官网下载 Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡

make

make install

Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡

mod_jk.so模块安装完成

Apache添加JK模块实现tomcat负载均衡

拷贝到/usr/apache24/modules下

cp mod_jk.so /usr/apache24/modules/

Apache添加JK模块实现tomcat负载均衡

三.创建负载均衡,测试结果

Apache添加JK模块实现tomcat负载均衡

1.创建控制文件

vim workers.properties

Apache添加JK模块实现tomcat负载均衡

worker.list=controller,tomcat1,tomcat2

#tomcat1实例配置 这里要和tomcat配置文件Service.xml的jvmRoute保持一致

worker.tomcat1.host=127.0.0.1

worker.tomcat1.port=7009

worker.tomcat1.type=ajp13

#分发权重 值越大负载越大

worker.tomcat1.lbfactor=1

#tomcat2实例配置

worker.tomcat2.host=127.0.0.1

worker.tomcat2.port=8009

worker.tomcat2.type=ajp13

#分发权重 值越大负载越大

worker.tomcat2.lbfactor=1

#负载均衡分发控制器

worker.controller.type=lb

worker.controller.balance_workers=tomcat1,tomcat2

worker.controller.sticky_session=false

2.创建JK配置文件

vim mod_jk.conf

Apache添加JK模块实现tomcat负载均衡

LoadModule jk_module modules/mod_jk.so

JkWorkersFile conf/workers.properties

JkMount /* controller

3.修改httpd.conf配置文件

最后一行加入引入JK配置文件

Apache添加JK模块实现tomcat负载均衡

4.启动apache服务

Apache添加JK模块实现tomcat负载均衡

5.测试

实现用apache最分发tomcat负载均衡

Apache添加JK模块实现tomcat负载均衡 Apache添加JK模块实现tomcat负载均衡
原文  http://blog.51cto.com/anfishr/2322582
正文到此结束
Loading...