浏览 1027 次
该帖已经被评为隐藏帖
|
|
---|---|
作者 | 正文 |
发表时间:2007-02-21
httpd.conf增加 LoadModule jk2_module modules/mod_jk2.so <VirtualHost *:80> ServerAdmin webmaster@dummy-host.example.com DocumentRoot N:\\apache-tomcat-6.0\\webapps\\ROOT ServerName dummy-host.example.com ErrorLog logs/dummy-host.example.com-error_log CustomLog logs/dummy-host.example.com-access_log common </VirtualHost> ######################### 在tomcat\conf下增加文件 jk2.properties 内容如下 handler.list=apr,request,channelJni # Override the default port for the socketChannel channelSocket.port=8009 # # shm.file=${jkHome}/work/jk2.shm apr.jniModeSo=c:/apache2/modules/mod_jk2.so # apr.jniModeSo=inprocess shm.file=c:/Apache2/logs/jk2.shm #################### apache2\conf目录下增加文件 workers2.properties 内容 [logger.apache2] file=c:/Apache2/logs/jk2.log level=INFO debug=1 [config] file=c:/Apache2/logs/workers2.properties level=INFO debug=1 [channel.socket:localhost :8009] host=127.0.0.1 port=8009 [shm] file=c:/Apache2/logs/jk2.shm size=1048576 # define the worker [ajp13:localhost:8009] channel=channel.socket:127.0.0.1:8009 #[uri:/*] ###表示web主目录下的所有请求都给TomCat处理 [uri:/*.jsp]##表示把所有的.jsp文件交给Tomcat处理 [uri:/*.do] [uri:/servlet/*] #[uri:/jsp-examples/*] #表示把所有的jsp-examples目录的所有请求都交给Tomcat处理,如果在IE地址栏中输入http://127.0.0.4/ jsp-examples那么你看到的将会是http://127.0.0.1:8080/ jsp-examples中的内容。 #[uri:/servlets-examples/*] 我在xp系统测试成功, 可是在外网server上测试却提示错误 外网系统win2003 在线急等!!!!!! 错误提示如图: 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |