What configuration changes needed on tcServer to work with Apache Web server

Posted by aos37 on Server Fault See other posts from Server Fault or by aos37
Published on 2011-02-09T19:11:47Z Indexed on 2011/02/10 23:27 UTC
Read the original article Hit count: 225

Filed under:
|
|

Hi,

I have Apache Webserver 2.2.17 and tcServer-6.0.20 and I want to dispatch requests from apache to tcserver.

I am using mod_jk.so and I have the following in httpd.conf

LoadModule jk_module modules/mod_jk.so

<IfModule jk_module>
   JkWorkersFile /x/y/apache2/conf/workers.properties
   JkLogFile /x/y/apache2/logs/mod_jk.log
   JkLogLevel info
   JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
   JkMount /xyz/* ww
</IfModule>

My workers.properties file under /x/y/apache2/conf/workers.properties has

worker.list= ww
worker.ww.type=ajp13
worker.ww.port=12000
worker.ww.host=www.abc.com

I'm new to tcServer (and tomcat) and I don't know what changes I have to make in server.xml on tcServer to get this to work with Apache.

Any help would be appreciated.

© Server Fault or respective owner

Related posts about tomcat

Related posts about apache2.2