Forum Moderators: phranque

Message Too Old, No Replies

Tomcat and httpd

coexisting on the same server?

         

VectorJ

6:49 pm on Jul 6, 2004 (gmt 0)

10+ Year Member



Is there any way to have both Tomcat and Apache httpd running on the same server without the user having to specify the port they want to connect to? Maybe have www.example.com/tomcat/ redirect to the Tomcat port, or anything with a .jsp extension served from the Tomcat port? Is there a better (more transparent) way?

gergoe

7:13 pm on Jul 6, 2004 (gmt 0)

10+ Year Member



The tomcat can work in application server mode, so all files are handled by apache, while the jsp files are by tomcat. See the mod_jk documentation [jakarta.apache.org] for more details

VectorJ

8:00 pm on Jul 6, 2004 (gmt 0)

10+ Year Member



Thanks gergoe, that's exactly what I needed.