Tomcat负载均衡mod_jk.so

本文详细介绍了如何使用mod_jk.so插件实现Apache与Tomcat的负载均衡配置,包括下载插件、配置workers.properties、创建mod_jk.conf文件,以及负载均衡的测试步骤和性能指标展示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

请结合集群进行部署
第一步
下载插件(以apache版本为主)
网址为:http://archive.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/windows/
得到mod_jk.so文件




第二步
将mod_jk.so文件复制到 apache目录\modules 下




第三步
在 apache目录\conf 下创建 workers.properties 内容如下(保存为ANSI格式):
worker.list=controller,tomcat1,tomcat2,tomcat3
#========tomcat1=========
worker.tomcat1.port=7009 //端口
worker.tomcat1.host=127.0.0.1 //host
worker.tomcat1.type=ajp13 //类型
worker.tomcat1.lbfactor=1 //承重
#========tomcat2=========
worker.tomcat2.port=8009
worker.tomcat2.host=127.0.0.1
worker.tomcat2.type=ajp13
worker.tomcat2.lbfactor=1
#========tomcat3=========
worker.tomcat3.port=9009
worker.tomcat3.host=127.0.0.1
worker.tomcat3.type=ajp13
worker.tomcat3.lbfactor=1
#========controller=========
worker.controller.type=lb //类型lb
worker.controller.balanced_workers=tomcat1,tomcat2,tomcat3 //连接器
worker.controller.sticky_session=false //同步session方式(取消默认,可和多个节点交顾)




第四步
在 apache目录\conf 下创建 mod_jk.conf 内容如下:
LoadModule jk_module modules/mod_jk.so //加载文件目录
JkWorkersFile conf/workers.properties //配置文件路径
JkMount /* controller //将apache下所有的请求都交给controller处理




第五步
修改 apache目录\conf\httpd.conf 文本末尾追加一行
include conf/mod_jk.conf










测试
C:\o\Apache2.4\Apache24\bin>ab -n 1000 -c 20 http://127.0.0.1/TestCluster/index.jsp
属性说明
-n   设置为访问一千次
-c   设置并发访问量


This is ApacheBench, Version 2.3 <$Revision: 1706008 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/


Benchmarking 127.0.0.1 (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests




Server Software:        Apache/2.4.17
Server Hostname:        127.0.0.1
Server Port:            80


Document Path:          /TestCluster/index.jsp
Document Length:        440 bytes


Concurrency Level:      20
Time taken for tests:   1.101 seconds
Complete requests:      1000
Failed requests:        0
Total transferred:      729000 bytes
HTML transferred:       440000 bytes
Requests per second:    908.26 [#/sec] (mean)
Time per request:       22.020 [ms] (mean)
Time per request:       1.101 [ms] (mean, across all concurrent requests)
Transfer rate:          646.61 [Kbytes/sec] received


Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    0   1.8      0      10
Processing:     0   21  41.2     10     636
Waiting:        0   20  41.0     10     636
Total:          0   21  41.1     10     636


Percentage of the requests served within a certain time (ms)
  50%     10
  66%     20
  75%     20
  80%     30
  90%     30
  95%     50
  98%    130
  99%    190
 100%    636 (longest request)


如果一个服务器宕机(模拟关闭),其他会继续跑
智能网联汽车的安全员高级考试涉及多个方面的专业知识,包括但不限于自动驾驶技术原理、车辆传感器融合、网络安全防护以及法律法规等内容。以下是针对该主题的一些核心知识解析: ### 关于智能网联车安全员高级考试的核心内容 #### 1. 自动驾驶分级标准 国际自动机工程师学会(SAE International)定义了六个级别的自动驾驶等级,从L0到L5[^1]。其中,L3及以上级别需要安全员具备更高的应急处理能力。 #### 2. 车辆感知系统的组成与功能 智能网联车通常配备多种传感器,如激光雷达、毫米波雷达、摄像头和超声波传感器等。这些设备协同工作以实现环境感知、障碍物检测等功能[^2]。 #### 3. 数据通信与网络安全 智能网联车依赖V2X(Vehicle-to-Everything)技术进行数据交换,在此过程中需防范潜在的网络攻击风险,例如中间人攻击或恶意软件入侵[^3]。 #### 4. 法律法规要求 不同国家和地区对于无人驾驶测试及运营有着严格的规定,考生应熟悉当地交通法典中有关自动化驾驶部分的具体条款[^4]。 ```python # 示例代码:模拟简单决策逻辑 def decide_action(sensor_data): if sensor_data['obstacle'] and not sensor_data['emergency']: return 'slow_down' elif sensor_data['pedestrian_crossing']: return 'stop_and_yield' else: return 'continue_driving' example_input = {'obstacle': True, 'emergency': False, 'pedestrian_crossing': False} action = decide_action(example_input) print(f"Action to take: {action}") ``` 需要注意的是,“同学”作为特定平台上的学习资源名称,并不提供官方认证的标准答案集;建议通过正规渠道获取教材并参加培训课程来准备此类资格认证考试
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值