实战apache+tomcat+mod_jk整合

王朝system·作者佚名  2008-05-18
窄屏简体版  字體: |||超大  

在做本实验之前你应该安装好了apache,j2sdk,tomcat。有问题的可以参看我的前一篇文章。这里就着重介绍mod_jk.

下载jakarta-tomcat-connectors-jk-1.2.4-src.tar.gz

cd /www

tar -xzf jakarta-tomcat-connectors-jk-1.2.4-src.tar.gz

mv jakarta-tomcat-connectors-jk-1.2.4 mod_jk

cd /www/mod_jk/jk/native

./buildconf

./configure --with-apxs=/www/http2/bin/apxs

make

cp apache-2.0/mod_jk.so /www/http2/modules/

准备两个重要的配置文件

修改httpd.conf,告诉服务器装载mod_jk模块。并配置使之转发特定的请求给tomcat处理

#-------------------mod_jk-------------------

LoadModule jk_module libexec/mod_jk.so

# Declare the module for <IfModule directive>

#AddModule mod_jk.c

# Where to find workers.properties

JkWorkersFile /www/http2/conf/workers.properties

# Where to put jk logs

JkLogFile /www/http2/logs/mod_jk.log

# Set the jk log level [debug/error/info]

JkLogLevel info

# Select the log format

JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "

# JkOptions indicate to send SSL KEY SIZE,

JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories

# JkRequestLogFormat set the request format

JkRequestLogFormat "%w %V %T"

# Send servlet for context /examples to worker named worker1

JkMount /examples/servlet/* worker1

# Send JSPs for context /examples to worker named worker1

JkMount /examples/* worker1

新建文件/www/http2/conf/workers.properties

# Define 1 real worker using ajp13

worker.list=worker1

# Set properties for worker1 (ajp13)

worker.worker1.type=ajp13

worker.worker1.host=localhost

worker.worker1.port=8009

worker.worker1.lbfactor=50

worker.worker1.cachesize=10

worker.worker1.cache_timeout=600

worker.worker1.socket_keepalive=1

worker.worker1.socket_timeout=300

ok现在就可以测试了

http://ip/examples/jsp/index.html

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航