快速整合
apache2+tomcat5.5
的方法:
以前把
tomcat
仅作为测试环境使用,都是使用
8080
端口访问。目前要做个小网站(
www.openfans.net
)就使用
tomcat5.5
做应用服务器,用
apache2
作为
web
服务器。网上一搜,介绍这个的很多,但大多千篇一律,而且从
apache
,
tomcat
配置一步步讲起,不胜其烦。假定
apache
和
tomcat
都已经配置完成,现在要做的很简单。
http://archive.apache.org/dist/jakarta/tomcat-connectors/jk2/binaries/win32/jakarta-tomcat-connectors-jk2.0.4-win32-apache2.0.49.zip
,把里面的
mod_k2.so
拷到
apache
所在目录的
modules
下,然后在
httpd.conf
加上“
LoadModule jk2_module modules/mod_jk2.so
”,并按
apache
的说明:
Create a workers2.properties in conf (where httpd.conf is localised).
Put something like the following in the file:
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009
[uri: /*]
worker=ajp13:localhost:8009
Restart Apache.
输入
http://localhost
就可以看到
tomcat
的欢迎页面了。