Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-06-02 Thread karthikn
Hi Still awaiting for any Reply Have provided the necessary info for the LB failure with regards Karthik karthikn wrote: Hi With the setting as given below,still the TEST CASE for LB is failing O/s : win2000 JSDK: java version 1.6.0_03 1a) c:/TOMCAT1 (server.xml) ?xml

COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-30 Thread karthikn
Hi With the setting as given below,still the TEST CASE for LB is failing O/s : win2000 JSDK: java version 1.6.0_03 1a) c:/TOMCAT1 (server.xml) ?xml version='1.0' encoding='utf-8'? Server port=8007 shutdown=SHUTDOWN Listener className=org.apache.catalina.core.AprLifecycleListener

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread karthikn
Hi Ok I have modified the changes as below Tomcat 1 is on c:/TOMCAT1 on startup port - 8081 Connector port=8081 protocol=HTTP/1.1 connectionTimeout=2 redirectPort=8443 / Tomcat 2 is on d:/TOMCAT2 on startup port - 8082 Connector port=8082 protocol=HTTP/1.1 connectionTimeout=2

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Karthik, karthikn wrote: | Tomcat 1 is on c:/TOMCAT1 on startup port - 8081 | Connector port=8081 protocol=HTTP/1.1 connectionTimeout=2 | redirectPort=8443 / | | Tomcat 2 is on d:/TOMCAT2 on startup port - 8082 | Connector port=8082

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread karthikn
Hi Using this configuration, TOMCAT2 will never start up. I am confused TC1 Connector port=8081 protocol=HTTP/1.1 connectionTimeout=2 redirectPort=8443 / Connector port=8009 protocol=AJP/1.3 redirectPort=8443 / TC2 Connector port=8082 protocol=HTTP/1.1 connectionTimeout=2

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread Konstantin Kolinko
1) What is in your worker.properties file? 2) The following lines in Apache log: [Thu May 29 20:25:56 2008] [1264:2008] [info] jk_connect.c (566): connect to 10.10.16.63:8009 failed (errno=61) mod_jk tries to connect to 10.10.16.63. Is the IP address correct? In the worker.properties that you

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread David Fisher
Hi - I'm a bit of a hacker with server.xml, but your problem is with duplicate ports so look at ALL port usage in both server.xml files. Maybe you should try changing the redirect port for TC2 to 8444. There should not be a redirect port for AJP/1.3 Do you define an HTTPS connector? If

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Karthik, karthikn wrote: | Using this configuration, TOMCAT2 will never start up. | | I am confused | TC1 | | Connector port=8081 protocol=HTTP/1.1 connectionTimeout=2 | redirectPort=8443 / | Connector port=8009 protocol=AJP/1.3

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, David Fisher wrote: | Maybe you should try changing the redirect port for TC2 to 8444. Why? | There should not be a redirect port for AJP/1.3 Why not? I agree that the OP should really simplify his or her configuration, but you seem to be

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-29 Thread David Fisher
Hi Chris, David, David Fisher wrote: | Maybe you should try changing the redirect port for TC2 to 8444. Why? | There should not be a redirect port for AJP/1.3 Why not? I agree that the OP should really simplify his or her configuration, but you seem to be stabbing in the dark with

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-28 Thread karthikn
Hi SPEC 1)Apache 2.2.8 2) TOMCAT 6.0.16 (2 nos) 3) mod_jk-1.2.26-httpd-2.2.4.so (win32) 4) WIN2000 (spk 4) 5)JSDK 1.6 Clustering has been done as explained in the tomcat doc http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html I have just copied the basic settings as declared in the

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-28 Thread Mark Thomas
karthikn wrote: snip/ TOMCAT1 .server.xml is as follows snip/ Connector port=8081 protocol=HTTP/1.1 connectionTimeout=2 redirectPort=8443 / Connector port=8009 protocol=AJP/1.3 redirectPort=8443 / Engine name=Catalina defaultHost=localhost jvmRoute=node01 snip/ TOMCAT2

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-28 Thread Konstantin Kolinko
As you may see from your logs: [Wed May 28 18:45:28 2008] [1316:1392] [info] jk_ajp_common.c (869): Failed opening socket to (127.0.0.1:8009) (errno=61) You forgot to specify different ports for your AJP/1.3 connectors. They both try to start listening on port 8009, but that is not possible,

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Karthik, You've got your ports all fouled up. See below. karthikn wrote: | TOMCAT1 .server.xml is as follows [snip] | Connector port=8009 protocol=AJP/1.3 redirectPort=8443 / [snip] | TOMCAT2 .server.xml is as follows [snip] | Connector

Re: COMPATABILITY APACHE /TOMCAT/CONNECTOR

2008-05-27 Thread Mark Thomas
karthikn wrote: Hi Just want to confirm the form for Load balancing issues Is Apache 2.2.8 is compatible to work with following 1) TOMCAT 6.0.16 2) mod_jk-1.2.26-httpd-2.2.4.so (win32) 3) WIN2000 (spk 4) 4)JSDK 1.6 Should be fine. Mark