Arun Raj Ramkumar wrote:
> Hi all,
>  
> I need to migrate my web application from tomcat 4.1.29 to tomcat 5.5. I
> have installed tomcat 5.5 with JDK 1.6 and deployed my web application, its
> working fine. 
> Tell me what are all the changes need to be done to connect apache 2.0 to
> tomcat 5.5. Earlier  apache 2.0 server was connected to tomcat 4.1.29. 
> In tomcat 4.1.29 server.xml there was the below tag for AJP connector
> <!-- Define an AJP 1.3 Connector on port 8009 -->
> <Connector className="org.apache.ajp.tomcat4.Ajp1.3Connector"
> port="8029" minProcessors="5" maxProcessors="150"
> acceptCount="10" tomcatAuthentication="false" debug="0"/> 
>  
> Is there any similar kind of above tag  for tomcat 5.5 so that i can enable
> authentication for my web application.

http://tomcat.apache.org/tomcat-5.5-doc/config/ajp.html

The sample that comes with 5.5 in server.xml is:
    <Connector port="8009"
               enableLookups="false"
               redirectPort="8443" protocol="AJP/1.3" />

> Also tell me wat are all the changes need to be done in mod_jk.conf ,
> workers.properties and httpd.conf files as am migrating to tomcat5.5.

None.

Mark


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to