You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Trung Nguyen <tr...@globalcomplianceservices.com> on 2005/01/17 20:16:38 UTC

apache2 + mod_jk + tomcat5.5.4 help

Hello,

I'm trying to configure mod_jk with tomcat 5.5.4, but I'm kinda stuck.  I
did it with tomcat 4.1.30 with no problem.  How do you configure in
server.xml to make it talk to apache2 through AJP13?  In tomcat4 I did
something like this:

<Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
            port="8009" minProcessors="5" maxProcessors="75"
            enableLookups="false" acceptCount="10" debug="0"/>

It doesn't work with tomcat 5.5.4.  Please help!!!

Thanks  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: apache2 + mod_jk + tomcat5.5.4 help

Posted by "Sean M. Duncan" <se...@ferrosoft.com>.
Try leaving the className parameter off.  I new versions of Tomcat use
the CoyoteConnector for AJP communication.

The minProcessor and maxProcessor attributes have been deprecated.  Use
maxThreads, minSpareThreads and maxSpareThreads instead.

On Mon, 2005-01-17 at 14:16 -0500, Trung Nguyen wrote:
> Hello,
> 
> I'm trying to configure mod_jk with tomcat 5.5.4, but I'm kinda stuck.  I
> did it with tomcat 4.1.30 with no problem.  How do you configure in
> server.xml to make it talk to apache2 through AJP13?  In tomcat4 I did
> something like this:
> 
> <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
>             port="8009" minProcessors="5" maxProcessors="75"
>             enableLookups="false" acceptCount="10" debug="0"/>
> 
> It doesn't work with tomcat 5.5.4.  Please help!!!
> 
> Thanks  
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org