You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by "Nance, Michael" <MN...@tickets.com> on 2001/08/10 16:02:09 UTC

A Final Plea for Help (tomcat 3.2.2 and Apache 1.1.19)

I am using Tomcat 3.2.2 and Apache 1.1.19
For a couple days I have asked for help because I am 
seriously stuck.  When I start Tomcat then apache
my connectors Ajp12 and Ajp13 won't start.  I do a netstat
and they (8007 and 8009) are not there.

We are switching from Mod_JServ to Mod_JK and when I run the
JServ version the AJp12 starts fine (AJp13 not used)

This is from my server.xml


       <Connector className="org.apache.tomcat.service.PoolTcpConnector">
            <Parameter name="handler"
value="org.apache.tomcat.service.connector.Ajp12ConnectionHandler"/>
            <Parameter name="port" value="8007"/>
            <Parameter name="max_threads" value="500"/>
            <Parameter name="max_spare_threads" value="200"/>
            <Parameter name="min_spare_threads" value="100" />
        </Connector>

        <Connector className="org.apache.tomcat.service.PoolTcpConnector">
           <Parameter name="handler"
value="org.apache.tomcat.service.connector.Ajp13ConnectionHandler"/>
           <Parameter name="port" value="8009"/>
           <Parameter name="max_threads" value="500"/>
           <Parameter name="max_spare_threads" value="200"/>
           <Parameter name="min_spare_threads" value="100" />
        </Connector>

        <Context path="" docBase="../../../../src/public_html" debug="0"
reloadable="true" >
        </Context>


Also
Second

our dir structure is something like this

../src/common/...      path to all classes etc
../src/public_html/..   path to all jsp's

in my server.xml I have a line
<Context path="" docBase=".. /src/public_html" ...>


I believe that will take care of my jsps but not a path to my Servlets....
How can I fix this?

Thanks in advance