Re: Urgent...

2006-06-06 Thread Christian Jean

JDK 1.5 (AMD 64-bit) had been installed for several months already with
JAVA_HOME configured correctly.

Jeach!

On 6/6/06, Bob Hall [EMAIL PROTECTED] wrote:


--- Christian Jean [EMAIL PROTECTED] wrote:

 I've been successfully using various version of
 Tomcat for serveral years
 with the same certificate... all worked well.

 I wanted to test the stability of Tomcat 5.5.17, so
 I installed in on the
 same server but renamed all the 8XXX ports to 9XXX
 so that it could be run
 in parallel to the 5.0.28 server.  When I started
 the 5.5.17 server, I
 noticed that I could not get the HTTPS (SSL) pages
 working correctly.  The
 normal HTTP pages were working correctly though.

 Then the real trouble started!!  I could not load
 any HTTPS pages from any
 server thereafter...

 The SSL pages DID work on the 5.0.28 prior to
 testing the 5.5.17, but now
 HTTPS no longer works at all.  When trying to load
 the ssl pages from the
 browser it says nothing... just a timeout occures.

 The logs don't show a single trace that something (a
 page) was not properly
 sent.

 Using 'netstat -ln' shows that the ports are
 successfully bound.

 The only message I'm capable of getting is with
 lynx:

  bash   lynx https://localhost:8443

 Will display the following line:

   SSL error:Can't find common name in
 certificate-Continue? (y)

 Appart from installing and running server 5.5.17,
 nothing has changed on my
 server, so its weird that my production 5.0.28
 should stop working because
 of this test???


Christian,

You mention that no other changes were made on
the server, but did you happen to also install
jdk/jre 1.5 and/or change JAVA_HOME?

-Bob

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

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




Re: Urgent...

2006-06-06 Thread Christian Jean

Here is the result for 'jakarta-tomcat-5.0.28/conf/server.xml':

Server port=8005 shutdown=SHUTDOWN debug=0
   Connector port=8080
   Connector port=8443
   Connector port=8009
   Connector port=8082

Here is the result for 'apache-tomcat-5.5.17/conf/server.xml':

Server port=8005 shutdown=SHUTDOWN
   Connector port=8080 maxHttpHeaderSize=8192
   Connector port=8443 maxHttpHeaderSize=8192

Note that I'm using a slightly modified version of 'server-minimal.xml' for
the 5.5, but even using the standard server.xml (with SSL enabled) gives me
the same results.

Thanks,

Jeach!

On 6/6/06, Andrew Miehs [EMAIL PROTECTED] wrote:



In both tomcat/conf directories do a

grep 'port=' server.xml


Regards

Andrew


On 06/06/2006, at 4:25 PM, Christian Jean wrote:

 JDK 1.5 (AMD 64-bit) had been installed for several months already
 with
 JAVA_HOME configured correctly.

 Jeach!

 On 6/6/06, Bob Hall [EMAIL PROTECTED] wrote:

 --- Christian Jean [EMAIL PROTECTED] wrote:

  I've been successfully using various version of
  Tomcat for serveral years
  with the same certificate... all worked well.
 
  I wanted to test the stability of Tomcat 5.5.17, so
  I installed in on the
  same server but renamed all the 8XXX ports to 9XXX
  so that it could be run
  in parallel to the 5.0.28 server.  When I started
  the 5.5.17 server, I
  noticed that I could not get the HTTPS (SSL) pages
  working correctly.  The
  normal HTTP pages were working correctly though.
 
  Then the real trouble started!!  I could not load
  any HTTPS pages from any
  server thereafter...
 
  The SSL pages DID work on the 5.0.28 prior to
  testing the 5.5.17, but now
  HTTPS no longer works at all.  When trying to load
  the ssl pages from the
  browser it says nothing... just a timeout occures.
 
  The logs don't show a single trace that something (a
  page) was not properly
  sent.
 
  Using 'netstat -ln' shows that the ports are
  successfully bound.
 
  The only message I'm capable of getting is with
  lynx:
 
   bash   lynx https://localhost:8443
 
  Will display the following line:
 
SSL error:Can't find common name in
  certificate-Continue? (y)
 
  Appart from installing and running server 5.5.17,
  nothing has changed on my
  server, so its weird that my production 5.0.28
  should stop working because
  of this test???
 

 Christian,

 You mention that no other changes were made on
 the server, but did you happen to also install
 jdk/jre 1.5 and/or change JAVA_HOME?

 -Bob

 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam protection around
 http://mail.yahoo.com

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




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




Re: Urgent...

2006-06-06 Thread Christian Jean

I had originally tried to run them in parallel with the ports changed (which
I'm convinced is what caused all of this).

But since that didn't work at all, I stopped everything and they currently
are configured to use the same ports, but I'm not currently running them
simultaneously.

Thanks,

Jeach!


On 6/6/06, Andrew Miehs [EMAIL PROTECTED] wrote:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Bingo bongo -

If you want them to run at the same time - both tomcats need to use
different ports

so in the 5.5.17 config

change port 8005 to 18005
change port 8080 to 18080
change port 8443 to 18443

Regards

Andrew


On 06/06/2006, at 4:39 PM, Christian Jean wrote:

 Here is the result for 'jakarta-tomcat-5.0.28/conf/server.xml':

 Server port=8005 shutdown=SHUTDOWN debug=0
Connector port=8080
Connector port=8443
Connector port=8009
Connector port=8082

 Here is the result for 'apache-tomcat-5.5.17/conf/server.xml':

 Server port=8005 shutdown=SHUTDOWN
Connector port=8080 maxHttpHeaderSize=8192
Connector port=8443 maxHttpHeaderSize=8192

 Note that I'm using a slightly modified version of 'server-
 minimal.xml' for
 the 5.5, but even using the standard server.xml (with SSL enabled)
 gives me
 the same results.

 Thanks,

 Jeach!

 On 6/6/06, Andrew Miehs [EMAIL PROTECTED] wrote:


 In both tomcat/conf directories do a

 grep 'port=' server.xml


 Regards

 Andrew


 On 06/06/2006, at 4:25 PM, Christian Jean wrote:

  JDK 1.5 (AMD 64-bit) had been installed for several months already
  with
  JAVA_HOME configured correctly.
 
  Jeach!
 
  On 6/6/06, Bob Hall [EMAIL PROTECTED] wrote:
 
  --- Christian Jean [EMAIL PROTECTED] wrote:
 
   I've been successfully using various version of
   Tomcat for serveral years
   with the same certificate... all worked well.
  
   I wanted to test the stability of Tomcat 5.5.17, so
   I installed in on the
   same server but renamed all the 8XXX ports to 9XXX
   so that it could be run
   in parallel to the 5.0.28 server.  When I started
   the 5.5.17 server, I
   noticed that I could not get the HTTPS (SSL) pages
   working correctly.  The
   normal HTTP pages were working correctly though.
  
   Then the real trouble started!!  I could not load
   any HTTPS pages from any
   server thereafter...
  
   The SSL pages DID work on the 5.0.28 prior to
   testing the 5.5.17, but now
   HTTPS no longer works at all.  When trying to load
   the ssl pages from the
   browser it says nothing... just a timeout occures.
  
   The logs don't show a single trace that something (a
   page) was not properly
   sent.
  
   Using 'netstat -ln' shows that the ports are
   successfully bound.
  
   The only message I'm capable of getting is with
   lynx:
  
bash   lynx https://localhost:8443
  
   Will display the following line:
  
 SSL error:Can't find common name in
   certificate-Continue? (y)
  
   Appart from installing and running server 5.5.17,
   nothing has changed on my
   server, so its weird that my production 5.0.28
   should stop working because
   of this test???
  
 
  Christian,
 
  You mention that no other changes were made on
  the server, but did you happen to also install
  jdk/jre 1.5 and/or change JAVA_HOME?
 
  -Bob
 
  __
  Do You Yahoo!?
  Tired of spam?  Yahoo! Mail has the best spam protection around
  http://mail.yahoo.com
 
 
 -
  To start a new topic, e-mail: users@tomcat.apache.org
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


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



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Darwin)

iD8DBQFEhZaeW126qUNSzvURAp+IAJ4gzDQLi/RnVNkKLkhNut94pvGkEgCeIpVQ
aeyP00DZ8io8rVGo/fCuMAc=
=uFub
-END PGP SIGNATURE-

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




Re: Urgent...

2006-06-06 Thread Christian Jean

I had originally tried to run them in parallel with the ports changed (which
I'm convinced is what caused all of this).

But since that didn't work at all, I stopped everything and they currently
are configured to use the same ports, but I'm not currently running them
simultaneously.

Thanks,

Jeach!


On 6/6/06, Grant Johnson [EMAIL PROTECTED] wrote:


I am not an expert but

Both tomcat's look like they are trying to do stuff on ports  8005,
and connector ports 8080 and 8443.
What if you stopped both tomcat's and started one.  Does the running
Tomcat work?



Christian Jean wrote:
 Here is the result for 'jakarta-tomcat-5.0.28/conf/server.xml':

 Server port=8005 shutdown=SHUTDOWN debug=0
Connector port=8080
Connector port=8443
Connector port=8009
Connector port=8082

 Here is the result for 'apache-tomcat-5.5.17/conf/server.xml':

 Server port=8005 shutdown=SHUTDOWN
Connector port=8080 maxHttpHeaderSize=8192
Connector port=8443 maxHttpHeaderSize=8192

 Note that I'm using a slightly modified version of
 'server-minimal.xml' for
 the 5.5, but even using the standard server.xml (with SSL enabled)
 gives me
 the same results.

 Thanks,

 Jeach!

 On 6/6/06, Andrew Miehs [EMAIL PROTECTED] wrote:


 In both tomcat/conf directories do a

 grep 'port=' server.xml


 Regards

 Andrew


 On 06/06/2006, at 4:25 PM, Christian Jean wrote:

  JDK 1.5 (AMD 64-bit) had been installed for several months already
  with
  JAVA_HOME configured correctly.
 
  Jeach!
 
  On 6/6/06, Bob Hall [EMAIL PROTECTED] wrote:
 
  --- Christian Jean [EMAIL PROTECTED] wrote:
 
   I've been successfully using various version of
   Tomcat for serveral years
   with the same certificate... all worked well.
  
   I wanted to test the stability of Tomcat 5.5.17, so
   I installed in on the
   same server but renamed all the 8XXX ports to 9XXX
   so that it could be run
   in parallel to the 5.0.28 server.  When I started
   the 5.5.17 server, I
   noticed that I could not get the HTTPS (SSL) pages
   working correctly.  The
   normal HTTP pages were working correctly though.
  
   Then the real trouble started!!  I could not load
   any HTTPS pages from any
   server thereafter...
  
   The SSL pages DID work on the 5.0.28 prior to
   testing the 5.5.17, but now
   HTTPS no longer works at all.  When trying to load
   the ssl pages from the
   browser it says nothing... just a timeout occures.
  
   The logs don't show a single trace that something (a
   page) was not properly
   sent.
  
   Using 'netstat -ln' shows that the ports are
   successfully bound.
  
   The only message I'm capable of getting is with
   lynx:
  
bash   lynx https://localhost:8443
  
   Will display the following line:
  
 SSL error:Can't find common name in
   certificate-Continue? (y)
  
   Appart from installing and running server 5.5.17,
   nothing has changed on my
   server, so its weird that my production 5.0.28
   should stop working because
   of this test???
  
 
  Christian,
 
  You mention that no other changes were made on
  the server, but did you happen to also install
  jdk/jre 1.5 and/or change JAVA_HOME?
 
  -Bob
 
  __
  Do You Yahoo!?
  Tired of spam?  Yahoo! Mail has the best spam protection around
  http://mail.yahoo.com
 
 
-
  To start a new topic, e-mail: users@tomcat.apache.org
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


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





--

F. Grant Johnson
566-0630 / [EMAIL PROTECTED]

Systems/Web Coordinator
RM 285 - Robertson Library
University of Prince Edward Island

***
Attitude is IT!


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




Tests...

2006-06-06 Thread Christian Jean

In regards to my original problem sent a few hours ago, if someone could
test the following, it would be greatly appreciated...

1. If you have a version of Tomcat 5.0.28 running on ports 8080 and 8443
using a valid (signed) certificate and NOT running as root.
2. Make sure that the above both responds on http and https protocols
correctly.

3. Download Tomcat 5.5.17 and install it by uncommenting the SSL section and
then renaming the 8XXX ports to its 9XXX equivalent.
4. Make sure that you configure SSL to use the SAME certificate file.
5. Test the above (http://domain.com:9080 and https://domain.com:9443), as
for me https did not work, but http did -- this is where everything started
going bad for me (port 9443 was NOT bound at all when using 'netstat -ln').

6. Stop both servers and restart the Tomcat 5.0.28 one
7. Now if you try step #2, it no longer works and requesting https will just
time-out.  FOR EVER -- no more https!

Thats all I did thinking that there was no harm in running Tomcat in
parallel sharing the same certificate key.  If someone could test the above
at least I could get some feedback.

Thanks,

Jeach!


Urgent...

2006-06-05 Thread Christian Jean

Please help, my production server is down because of this mess

I've been successfully using various version of Tomcat for serveral years
with the same certificate... all worked well.

The last server I was using was 5.0.28... which kept crashing every day!
Looking at the log files did not give any hint as to what was making it
crash.  Actually it didn't even seem to log anything out of the ordinary.

I wanted to test the stability of Tomcat 5.5.17, so I installed in on the
same server but renamed all the 8XXX ports to 9XXX so that it could be run
in parallel to the 5.0.28 server.  When I started the 5.5.17 server, I
noticed that I could not get the HTTPS (SSL) pages working correctly.  The
normal HTTP pages were working correctly though.

Then the real trouble started!!  I could not load any HTTPS pages from any
server thereafter...

The SSL pages DID work on the 5.0.28 prior to testing the 5.5.17, but now
HTTPS no longer works at all.  When trying to load the ssl pages from the
browser it says nothing... just a timeout occures.

The logs don't show a single trace that something (a page) was not properly
sent.

Using 'netstat -ln' shows that the ports are successfully bound.

The only message I'm capable of getting is with lynx:

bash   lynx https://localhost:8443

Will display the following line:

 SSL error:Can't find common name in certificate-Continue? (y)

Appart from installing and running server 5.5.17, nothing has changed on my
server, so its weird that my production 5.0.28 should stop working because
of this test???

If you have questions, please ask...

Thanks in advance,

Jeach!