I did not follow this thread from the beginning, but the first thing I would
try is to see if ajp12 is enabled. Even if you use ajp13 for communication
with apache you need ajp12  for shutting down the Tomcat. Never remove
ajp12 from server.xml, only add ajp13.

So, you have to have a 
        <!-- Apache AJP12 support. This is also used to shut down tomcat.
          -->
        <Connector className="org.apache.tomcat.service.PoolTcpConnector">
            <Parameter name="handler"
       value="org.apache.tomcat.service.connector.Ajp12ConnectionHandler"/>
            <Parameter name="port" value="4006"/>
        </Connector>
in your server.xml. Put something which is not used as port value (4006 in my
case)

Jan
Jan K. Labanowski            |    phone: 614-292-9279,  FAX: 614-292-7168
Ohio Supercomputer Center    |    Internet: [EMAIL PROTECTED] 
1224 Kinnear Rd,             |    http://www.ccl.net/chemistry.html
Columbus, OH 43212-1163      |    http://www.osc.edu/




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to