Re: How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-18 Thread Ognjen Blagojevic
James, On 18.12.2012 3:03, James Dekker wrote: Dec 17, 2012 5:43:08 PM org.apache.coyote.AbstractProtocol start INFO: Starting ProtocolHandler [http-bio-8443] Dec 17, 2012 5:43:08 PM org.apache.coyote.AbstractP INFO: Server startup in 9611 ms You successfully configured

Re: How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-18 Thread Josh Gooding
I just did this. I have the tomcat manager application running across SSL. Here's what I did On Mon, Dec 17, 2012 at 9:03 PM, James Dekker james.dek...@gmail.comwrote: James said... STUFF: (1) cd $CATALINA_HOME/conf (2) Create a certificate and store it in a new key store. keytool

Re: How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ognjen, On 12/18/12 5:05 AM, Ognjen Blagojevic wrote: James, On 18.12.2012 3:03, James Dekker wrote: Dec 17, 2012 5:43:08 PM org.apache.coyote.AbstractProtocol start INFO: Starting ProtocolHandler [http-bio-8443] Dec 17, 2012 5:43:08 PM

Re: How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-18 Thread Ognjen Blagojevic
Chris, On 18.12.2012 20:44, Christopher Schultz wrote: If you are using curl just to check the certificate or test HTTPS, it is easier and faster to do that with your favorite web browser. Better yet, use sslscan. Nice tool, thank you for the tip. You seem to be confused by the fact that

How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-17 Thread James Dekker
Am using JDK 1.6, tomcat 7.0.32, and Red Hat Linux. I need help setting up SSL on my local tomcat instance. After looking at the instructions on the official tomcat 7 website: http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html]http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html I

Re: How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-17 Thread Johanes Soetanto
On 18 December 2012 13:03, James Dekker james.dek...@gmail.com wrote: Am using JDK 1.6, tomcat 7.0.32, and Red Hat Linux. I need help setting up SSL on my local tomcat instance. After looking at the instructions on the official tomcat 7 website:

Re: How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-17 Thread Han Ming Low
I'm not sure about the curl part but I think there is a couple of things you would want to change. 1) when you use the genkey with -keystore .jks, you should expect a file name .jks (without quotes) to be generated in the /conf directory if you have CD in as in the step 1. So, the keystoreFile in

Re: How to Enable SSL on Tomcat 7 on Linux Test using curl?

2012-12-17 Thread James Dekker
Thanks Mr. Han Ming Low, But that 2nd line number was a typo its supposed to state: (2) Create a certificate and store it in a new key store. keytool -genkey -alias tomcat -keyalg RSA -keystore keystore.jks Thanks for responding to my inquiry, James On Dec 17, 2012, at 6:51 PM, Han