Re: Need help setting up SSL on Tomcat 8

2016-06-28 Thread Sean Son
Hey Philip So i was able to get the page to connect with SSL but I noticed that when I clicked on the little icon that looks like a lock next to https:// in the address bar, I saw this certificate error: Certificate Error There are issues with the site's certificate chain

Re: Need help setting up SSL on Tomcat 8

2016-06-28 Thread Sean Son
: > https://tomcat.apache.org/tomcat-8.0-doc/ssl-howto.html > > - > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org > For additional commands, e-mail: users-h...@tomcat.apache.org > >

Re: Need help setting up SSL on Tomcat 8

2016-06-28 Thread Philip Hachey
Have you tried following the steps found here?: https://tomcat.apache.org/tomcat-8.0-doc/ssl-howto.html - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Need help setting up SSL on Tomcat 8

2016-06-28 Thread Sean Son
Hello all I am stuck trying to set up SSL on Tomcat 8. I have tried all sorts of advice and still I cannot get it to work. I attempted to use the method describe on this website: https://sysengineers.wordpress.com/2011/03/16/tomcat-automatic-redirect-https/ but I started to see the following

Re: Setting SSL in Tomcat 7.0

2015-07-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Joby, On 7/12/15 4:42 AM, Joby J. Joseph wrote: Connector protocol=org.apache.coyote.http11.Http11NioProtocol port=8443 maxThreads=200 scheme=https secure=true SSLEnabled=true keystoreFile=${user.home}/.keystore keystorePass=changeit

Setting SSL in Tomcat 7.0

2015-07-12 Thread Joby J. Joseph
Hi, I need a help for setting up the SSL in Tomcat Server 7.0. I have created keystore and changed the server.xml file. But, I am getting the following exception. Screen for creating the keystore. [cid:image001.jpg@01D0BC9D.88D0B150] After this, I did a listing for the keystore values

Re: Setting SSL in Tomcat 7.0

2015-07-12 Thread Sanaullah
? Regards, Sanaullah On Sun, Jul 12, 2015 at 2:23 AM, Joby J. Joseph jjos...@bankboubyan.com wrote: Hi, I need a help for setting up the SSL in Tomcat Server 7.0. I have created keystore and changed the server.xml file. But, I am getting the following exception. Screen for creating

Re: Setting SSL in Tomcat 7.0

2015-07-12 Thread Sanaullah
. Joseph jjos...@bankboubyan.com wrote: Hi, Thanks for the reply. I have followed the same steps provided by the tomcat documentation. https://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration First I created the keystore file by executing the command ... %JAVA_HOME%\bin\keytool

Re: Setting SSL in Tomcat 7.0

2015-07-12 Thread Konstantin Kolinko
2015-07-12 12:42 GMT+03:00 Joby J. Joseph jjos...@bankboubyan.com: Hi, Thanks for the reply. I have followed the same steps provided by the tomcat documentation. https://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration First I created the keystore file by executing

RE: Setting SSL in Tomcat 7.0

2015-07-12 Thread Joby J. Joseph
Hi, Thanks for the reply. I have followed the same steps provided by the tomcat documentation. https://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration First I created the keystore file by executing the command ... %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA

RE: Setting SSL in Tomcat 7.0

2015-07-12 Thread Joby J. Joseph
: Sanaullah [mailto:sanaulla...@gmail.com] Sent: 12/07/2015 1:55 PM To: Tomcat Users List Subject: Re: Setting SSL in Tomcat 7.0 %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA I don't know whats the output of the above command which run and either its executed successfully or not You can

Re: SSL on Tomcat 6

2015-06-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Adriano, On 6/11/15 3:54 PM, Adriano Matos Meier wrote: Exactly! When I run keytool -list ..., the PrivateKeyEntry now has the fingerprint for SSL certificate. I belived that I had lost private key, and I would have to do it all again

SSL on Tomcat 6

2015-06-11 Thread Adriano Matos Meier
Hi. I need update the SSL certificate in Tomcat 6.x. First I did: 1) Generate keystore keytool -genkeypair -alias repository -keyalg RSA -keysize 2048 -sigalg SHA256withRSA -keystore /usr/local/tomcat6/keystore/keystore2015.jks 2) Generate CSR keytool -certreq -alias repository -keyalg RSA

Re: SSL on Tomcat 6

2015-06-11 Thread Adriano Matos Meier
Chris. I had success when I re-import SSL certificate using same name alias of PrivateKeyEntry and name alias used when I generate CSR (repository). It's ok now! Thank you very much!!! Adriano Em Qui, 2015-06-11 às 09:59 -0400, Christopher Schultz escreveu: Adriano, On 6/11/15 9:45 AM,

Re: SSL on Tomcat 6

2015-06-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Adriano, On 6/11/15 2:31 PM, Adriano Matos Meier wrote: I had success when I re-import SSL certificate using same name alias of PrivateKeyEntry and name alias used when I generate CSR (repository). That was going to be my second suggestion.

Re: SSL on Tomcat 6

2015-06-11 Thread Adriano Matos Meier
Exactly! When I run keytool -list ..., the PrivateKeyEntry now has the fingerprint for SSL certificate. I belived that I had lost private key, and I would have to do it all again (keystore/CSR/intermed/SSL). I still import the SSL certificate with alias tomcat, and it appears in keytool as a

Re: SSL on Tomcat 6

2015-06-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Adriano, On 6/11/15 9:45 AM, Adriano Matos Meier wrote: I tried to add keyAlias=server in my server.xml, but I received this error: What does keytool -list show for that keystore? It returns 3 entries: 1 PrivateKeyEntry (Private Key) -

Re: SSL on Tomcat 6

2015-06-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Adriano, On 6/11/15 7:18 AM, Adriano Matos Meier wrote: I need update the SSL certificate in Tomcat 6.x. First I did: 1) Generate keystore keytool -genkeypair -alias repository -keyalg RSA -keysize 2048 -sigalg SHA256withRSA -keystore /usr

Re: SSL on Tomcat 6

2015-06-11 Thread Adriano Matos Meier
escreveu: Adriano, On 6/11/15 7:18 AM, Adriano Matos Meier wrote: I need update the SSL certificate in Tomcat 6.x. First I did: 1) Generate keystore keytool -genkeypair -alias repository -keyalg RSA -keysize 2048 -sigalg SHA256withRSA -keystore /usr/local/tomcat6/keystore

Re: Unable to disable SSL in Tomcat 6 for poodle Vulnerability!

2014-11-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Utkarsh, On 11/12/14 5:43 AM, Utkarsh Dave wrote: Ignoring the option to upgrade to Tomcat 7, i tried to configure server.xml in several differrent ways, but yet SSL protocol was enable. I see below update on Tomcat site (

Re: Unable to disable SSL in Tomcat 6 for poodle Vulnerability!

2014-11-12 Thread Utkarsh Dave
: On Sun, Nov 2, 2014 at 10:09 AM, Utkarsh Dave utkarshkd...@gmail.com wrote: Is there any other way to disable SSL in Tomcat 6. How many ways do you need? The process described in this thread works as indicated with 6.0.37. -- Hassan Schroeder hassan.schroe

Re: Unable to disable SSL in Tomcat 6 !

2014-11-02 Thread Utkarsh Dave
Hi Chris, Yes. openssl s_client succeeds (displays no exception) when I have sslProtocols=TLSv1 set? The latest releases of our project uses Tomcat 7, but to support older releaes we may not upgrade from Tomcat 6 to 7. Is there any other way to disable SSL in Tomcat 6. -Utkarsh On Sun, Nov 2

Re: Unable to disable SSL in Tomcat 6 !

2014-11-02 Thread Hassan Schroeder
On Sun, Nov 2, 2014 at 10:09 AM, Utkarsh Dave utkarshkd...@gmail.com wrote: Is there any other way to disable SSL in Tomcat 6. How many ways do you need? The process described in this thread works as indicated with 6.0.37. -- Hassan Schroeder hassan.schroe

Re: Unable to disable SSL in Tomcat 6 !

2014-11-01 Thread Utkarsh Dave
SIGNED MESSAGE- Hash: SHA256 Utkarsh, On 10/31/14 11:52 AM, Utkarsh Dave wrote: Nothing helped much. Please let me know how can i disable SSL in Tomcat 6.0.37. I tried below configuration in server.xml on Tomcat 6.0.37 Connector port=8443 protocol=org.apache.coyote.http11

Re: Unable to disable SSL in Tomcat 6 !

2014-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Utkarsh, On 11/1/14 3:33 PM, Utkarsh Dave wrote: Thanks for the response. I am testing using below steps. From another machine I am running this command: openssl s_client -ssl3 -msg -connect HOST:PORT HOST is the server ip (on the

Re: Unable to disable SSL in Tomcat 6 !

2014-10-31 Thread Utkarsh Dave
Nothing helped much. Please let me know how can i disable SSL in Tomcat 6.0.37. I tried below configuration in server.xml on Tomcat 6.0.37 Connector port=8443 protocol=org.apache.coyote.http11.Http11Protocol maxThreads=150 SSLEnabled=true scheme=https secure=true

Re: Unable to disable SSL in Tomcat 6 !

2014-10-31 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Utkarsh, On 10/31/14 11:52 AM, Utkarsh Dave wrote: Nothing helped much. Please let me know how can i disable SSL in Tomcat 6.0.37. I tried below configuration in server.xml on Tomcat 6.0.37 Connector port=8443 protocol

Unable to disable SSL in Tomcat 6 !

2014-10-30 Thread Utkarsh Dave
Hello all, To avoid poodle vulnerability we are trying to disable SSL v3 and all its versions through below configuration. Connector port=8443 protocol=org.apache.coyote.http11.Http11Protocol maxThreads=150 SSLEnabled=true scheme=https secure=true clientAuth=false

Re: Unable to disable SSL in Tomcat 6 !

2014-10-30 Thread Mark Thomas
On 30/10/2014 16:38, Utkarsh Dave wrote: Hello all, To avoid poodle vulnerability we are trying to disable SSL v3 and all its versions through below configuration. Connector port=8443 protocol=org.apache.coyote.http11.Http11Protocol maxThreads=150 SSLEnabled=true

Enabling ssl in tomcat JSSE / APR

2014-10-15 Thread Shashank
Hi all I was trying to enable ssl in my tomcat server. I dont know whether my tomcat is using JSSE or APR. but as I created a keystore and imported a cert into it , can I use JSSE type irrespective of the connector? My server.xml block Connector port=9443 protocol=org.apache.coyote.http11

Re: Enabling ssl in tomcat JSSE / APR

2014-10-15 Thread Igor Cicimov
On 16/10/2014 12:10 PM, Shashank shashank.rayap...@gmail.com wrote: Hi all I was trying to enable ssl in my tomcat server. I dont know whether my tomcat is using JSSE or APR. but as I created a keystore and imported a cert into it , can I use JSSE type irrespective of the connector? My

Re: Using SSL with Tomcat

2014-06-30 Thread Daniel Mikusa
On Fri, Jun 27, 2014 at 4:52 PM, Jerome A. Wendell jawend...@suddenlink.net wrote: From: Jerome A. Wendell [mailto:jawend...@suddenlink.net] Sent: Friday, June 27, 2014 4:48 PM To: 'Tomcat Users List' Subject: RE: Using SSL with Tomcat From: Daniel Mikusa [mailto:dmik...@gopivotal.com

RE: Using SSL with Tomcat

2014-06-30 Thread Jerome A. Wendell
-Original Message- From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Sent: Monday, June 30, 2014 8:37 AM To: Tomcat Users List Subject: Re: Using SSL with Tomcat On Fri, Jun 27, 2014 at 4:52 PM, Jerome A. Wendell jawend...@suddenlink.net wrote: From: Jerome A. Wendell [mailto:jawend

Using SSL with Tomcat

2014-06-27 Thread Jerome A. Wendell
I am new to Tomcat, and just recently installed it as a container to run GeoServer. Everything is running fine, but now I have been asked to setup GeoServer to run using SSL. An EV Certificate is already installed on the server. Based on the documentation the default port for running Tomcat

Re: Using SSL with Tomcat

2014-06-27 Thread Daniel Mikusa
installed on the server. Where does this exist? What format is it in? Keep in mind that when using Tomcat and the BIO (default) or NIO connectors, you'll need a keystore in either Java Keystore or PKCS12 format. http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html

RE: Using SSL with Tomcat

2014-06-27 Thread Jerome A. Wendell
From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Sent: Friday, June 27, 2014 2:49 PM To: Tomcat Users List; jawend...@suddenlink.net Subject: Re: Using SSL with Tomcat On Fri, Jun 27, 2014 at 11:48 AM, Jerome A. Wendell jawend...@suddenlink.net wrote: I am new to Tomcat, and just

RE: Using SSL with Tomcat

2014-06-27 Thread Jerome A. Wendell
From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Sent: Friday, June 27, 2014 2:49 PM To: Tomcat Users List; jawend...@suddenlink.net Subject: Re: Using SSL with Tomcat On Fri, Jun 27, 2014 at 11:48 AM, Jerome A. Wendell mailto:jawend...@suddenlink.net jawend...@suddenlink.net wrote

RE: Using SSL with Tomcat

2014-06-27 Thread Jerome A. Wendell
From: Jerome A. Wendell [mailto:jawend...@suddenlink.net] Sent: Friday, June 27, 2014 4:48 PM To: 'Tomcat Users List' Subject: RE: Using SSL with Tomcat From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Sent: Friday, June 27, 2014 2:49 PM To: Tomcat Users List; jawend...@suddenlink.net

Re: ssl on tomcat

2013-12-05 Thread André Warnier
Please do not top-post. It is annoying when someone is trying to figure out what you are talking about. Randeep wrote: Chris, Yes. I have so many http links as some of our old submitted apps used non secured http links. as the apps are in use we cannot change it. I cannot use any redirect

Re: ssl on tomcat

2013-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Randeep, On 12/4/13, 1:30 PM, Randeep wrote: Chris, Yes. I have so many http links as some of our old submitted apps used non secured http links. as the apps are in use we cannot change it. I cannot use any redirect rules to convert all the

Fwd: enable SSL for Tomcat

2013-12-04 Thread Siva Kumar Balaguru
Hi, I need to enable SSL for tomcat in a windows server 2008. I have generated a certificate using the csr generated by this command: certreq -new request.inf request.req request.inf: [NewRequest] Subject = Exportable = TRUE KeyLength = 2048 MachineKeySet = TRUE FriendlyName = DN

enable SSL for Tomcat

2013-12-04 Thread Sivakumar_Balaguru
Hi, I need to enable SSL for tomcat in a windows server 2008. I have generated a certificate using the csr generated by this command: certreq -new request.inf request.req request.inf: [NewRequest] Subject = Exportable = TRUE KeyLength = 2048 MachineKeySet = TRUE FriendlyName = DN

Re: enable SSL for Tomcat

2013-12-04 Thread Ognjen Blagojevic
Sivakumar, On 4.12.2013 12:11, sivakumar_balag...@contractor.amat.com wrote: I need to enable SSL for tomcat in a windows server 2008. I have generated a certificate using the csr generated by this command: certreq -new request.inf request.req (...) I have imported this certificate

RE: enable SSL for Tomcat

2013-12-04 Thread Sivakumar_Balaguru
from your computer system. Thank you  ** Save a tree. Please don't print this e-mail unless needed. -Original Message- From: Ognjen Blagojevic [mailto:ognjen.d.blagoje...@gmail.com] Sent: Wednesday, December 04, 2013 5:25 PM To: Tomcat Users List Subject: Re: enable SSL for Tomcat

Re: enable SSL for Tomcat

2013-12-04 Thread Daniel Mikusa
[mailto:ognjen.d.blagoje...@gmail.com] Sent: Wednesday, December 04, 2013 5:25 PM To: Tomcat Users List Subject: Re: enable SSL for Tomcat Sivakumar, On 4.12.2013 12:11, sivakumar_balag...@contractor.amat.com wrote: I need to enable SSL for tomcat in a windows server 2008. I have generated

RE: enable SSL for Tomcat

2013-12-04 Thread Sivakumar_Balaguru
Subject: Re: enable SSL for Tomcat On Dec 4, 2013, at 7:40 AM, sivakumar_balag...@contractor.amat.com wrote: Hi Ognjen, I have tried this as well. I have generated a new keystore. By default, keytool generates a keystore with a private key. Good. You're half way there. I have imported

Re: enable SSL for Tomcat

2013-12-04 Thread Ognjen Blagojevic
Sivakumar, On 4.12.2013 14:27, sivakumar_balag...@contractor.amat.com wrote: This csr has the DN formatted like CN=server name, OU=OU Name, O=Organization Name, L=Location, ST=State, C=country which is based on the information we give while genarating the keystore. But the signing authority

ssl on tomcat

2013-12-04 Thread Randeep
hi, I'm using apacche 2.2 as front end and apache tomcat 6.0.37 as backend. I'm using mod_jk for connecting them. The problem is. I'm using ssl certificates. I'v configured ssl on apache. when I connect the site with https. it works. but when I click on an link it goes. I mean its not secure

Re: ssl on tomcat

2013-12-04 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Randeep, On 12/4/13, 12:22 PM, Randeep wrote: I'm using apacche 2.2 as front end and apache tomcat 6.0.37 as backend. I'm using mod_jk for connecting them. The problem is. I'm using ssl certificates. I'v configured ssl on apache. when I

Re: ssl on tomcat

2013-12-04 Thread Randeep
Chris, Yes. I have so many http links as some of our old submitted apps used non secured http links. as the apps are in use we cannot change it. I cannot use any redirect rules to convert all the http to https because of that. We use struts for framework. And normal jsp pages. I'm not a

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: http://tomcat.apache.org/tomcat-7.0-doc/ssl

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

2012-12-17 Thread Han Ming Low
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 followed the directions like this: (1) cd $CATALINA_HOME/conf (2) Create a certificate and store it in a new key store. keytool -genkey -alias tomcat -keyalg RSA

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

2012-12-17 Thread James Dekker
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 followed the directions like this: (1) cd $CATALINA_HOME/conf (2) Create a certificate

Re: configuring SSL for Tomcat with .pfx

2012-03-26 Thread Daniel Mikusa
: Re: configuring SSL for Tomcat with .pfx - Original Message - Hi everyone, I have been tasked with configuring SSL for Tomcat. I am new to Tomcat configuration so I have been through the docs and consulted many different articles in an attempt to figure out how

Re: configuring SSL for Tomcat with .pfx

2012-03-26 Thread Daniel Mikusa
March 2012 10:36 PM To: Tomcat Users List Subject: RE: configuring SSL for Tomcat with .pfx Hi Daniel Thanks so much for replying. So you mentioned that I ought to import the existing PKCS12 (remedy.optinet.net_cert.pfx) keystore into a Java Keystore

RE: configuring SSL for Tomcat with .pfx

2012-03-24 Thread Melanie Snayer
-Original Message- From: Daniel Mikusa [mailto:dmik...@vmware.com] Sent: 23 March 2012 07:21 PM To: Tomcat Users List Subject: Re: configuring SSL for Tomcat with .pfx - Original Message - Hi everyone, I have been tasked with configuring SSL for Tomcat. I am new to Tomcat

configuring SSL for Tomcat with .pfx

2012-03-23 Thread Melanie Snayer
Hi everyone, I have been tasked with configuring SSL for Tomcat. I am new to Tomcat configuration so I have been through the docs and consulted many different articles in an attempt to figure out how all of this works. I have been given the following (attached): * Thawte Primary Root

RE: configuring SSL for Tomcat with .pfx

2012-03-23 Thread Melanie Snayer
Hi All, I didn't add the attachment to the previous email so here it is. Regards Melanie From: Melanie Snayer Sent: 23 March 2012 06:05 PM To: 'users@tomcat.apache.org' Subject: configuring SSL for Tomcat with .pfx Hi everyone, I have been tasked with configuring SSL for Tomcat. I am new

Re: configuring SSL for Tomcat with .pfx

2012-03-23 Thread Konstantin Kolinko
2012/3/23 Melanie Snayer melan...@blueturtle.co.za: Hi All, I didn’t add the attachment to the previous email so here it is. 1. Attachments are not allowed on this mailing list. 2. Using HTML-formatted e-mails is strongly discouraged. Use plain text.

Re: configuring SSL for Tomcat with .pfx

2012-03-23 Thread Daniel Mikusa
- Original Message - Hi everyone, I have been tasked with configuring SSL for Tomcat. I am new to Tomcat configuration so I have been through the docs and consulted many different articles in an attempt to figure out how all of this works. I have been given the following

RE: Configure SSL under Tomcat 7

2012-03-20 Thread ayouB __
Hi every body happy new spring ^^ Well, i'm asking you again to tell me please what's the purpose of these files : localhost.crt localhost.key in the last example in this link : http://tomcat.apache.org/tomcat-7.0-doc/apr.html, i wanna just know from where how did they get it (is there

RE: Configure SSL under Tomcat 7

2012-03-20 Thread ayouB __
Hi, I have downloaded OpenSSL under Windows wich required me to install Visual C++ 2008 Redistributable and i did it then i added the C:\OpenSSL-Win32\bin to my environement variable PATH, now the openssl command work very well in the cmd.exe (it give me OpenSSL), so i wanna generate the

Re: Configure SSL under Tomcat 7

2012-03-20 Thread Tapan Thakkar
Hi, Go through this link http://tomcat.apache.org/tomcat-4.1-doc/ssl-howto.html The file that you are asking are certificate and key file used for SSL. To configure tomcat with SSL you need to create this files. On Tue, Mar 20, 2012 at 2:51 PM, ayouB __ ayb-2...@hotmail.fr wrote: Hi every

Re: Configure SSL under Tomcat 7

2012-03-20 Thread Casper Wandahl Schmidt
Den 20-03-2012 10:34, ayouB __ skrev: Hi, I have downloaded OpenSSL under Windows wich required me to install Visual C++ 2008 Redistributable and i did it then i added the C:\OpenSSL-Win32\bin to my environement variable PATH, now the openssl command work very well in the cmd.exe (it give

Re: Configure SSL under Tomcat 7

2012-03-20 Thread André Warnier
Casper Wandahl Schmidt wrote: Den 20-03-2012 10:34, ayouB __ skrev: Hi, I have downloaded OpenSSL under Windows wich required me to install Visual C++ 2008 Redistributable and i did it then i added the C:\OpenSSL-Win32\bin to my environement variable PATH, now the openssl command work

Re: Configure SSL under Tomcat 7

2012-03-20 Thread André Warnier
Casper Wandahl Schmidt wrote: Den 20-03-2012 10:34, ayouB __ skrev: Hi, I have downloaded OpenSSL under Windows wich required me to install Visual C++ 2008 Redistributable and i did it then i added the C:\OpenSSL-Win32\bin to my environement variable PATH, now the openssl command work

RE: Configure SSL under Tomcat 7

2012-03-20 Thread ayouB __
Hi, I follow steps said in this link : http://www.dylanbeattie.net/docs/openssl_iis_ssl_howto.html, i generated my files : .key and .crt, i puted them in the conf/bin then i modified my server.xml to be able to support these new changes, here it's :

Re: Configure SSL under Tomcat 7

2012-03-20 Thread Casper Wandahl Schmidt
Den 20-03-2012 13:15, ayouB __ skrev: Hi, I follow steps said in this link : http://www.dylanbeattie.net/docs/openssl_iis_ssl_howto.html, i generated my files : .key and .crt, i puted them in the conf/bin then i modified my server.xml to be able to support these new changes, here it's :

RE: Configure SSL under Tomcat 7

2012-03-20 Thread Caldarale, Charles R
From: Tapan Thakkar [mailto:tapan.d.thak...@gmail.com] Subject: Re: Configure SSL under Tomcat 7 Go through this link http://tomcat.apache.org/tomcat-4.1-doc/ssl-howto.html It is irresponsible for anyone to suggest use of Tomcat 4 documentation; even more so in this case when the subject

RE: Configure SSL under Tomcat 7

2012-03-20 Thread ayouB __
Hi, the logs doesn't say any thing, tomcat still working normally, the problem is when i put the link : https://localhost:8443/ProjectTest/ , the browser display : impossible to display this page ..., like the project doesn't even exit in my workspace (the browser doesn't recognize my web

Re: Configure SSL under Tomcat 7

2012-03-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ayoub, On 3/20/12 8:15 AM, ayouB __ wrote: I'm really disturbed, i've tried every kind of solution !! does any one have any last suggestion pleaase ?! I think it may be time to hire a consultant. - -chris -BEGIN PGP SIGNATURE- Version:

Re: Configure SSL under Tomcat 7

2012-03-20 Thread André Warnier
ayouB __ wrote: Hi, the logs doesn't say any thing, tomcat still working normally, the problem is when i put the link : https://localhost:8443/ProjectTest/ , the browser display : impossible to display this page ..., like the project doesn't even exit in my workspace (the browser doesn't

RE: Configure SSL under Tomcat 7

2012-03-20 Thread ayouB __
Hi every one, Thanks you all for your replies your critics that means i became a VIP member in this mailing list :D i'm jokking ^_^ Well, i turned back to the JSSE, now it works very well and i can access to my ressources using HTTPS. Still the APR one, as it has been said earlier, i puted

RE: Configure SSL under Tomcat 7

2012-03-19 Thread ayouB __
spent the whole week-end trying and retrying to solve this problem without any result. Thanks. Date: Fri, 16 Mar 2012 15:32:33 -0400 From: ch...@christopherschultz.net To: users@tomcat.apache.org Subject: Re: Configure SSL under Tomcat 7 -BEGIN PGP SIGNED MESSAGE- Hash: SHA1

RE: Configure SSL under Tomcat 7

2012-03-19 Thread Caldarale, Charles R
From: ayouB __ [mailto:ayb-2...@hotmail.fr] Subject: RE: Configure SSL under Tomcat 7 1) Don't top post. 2) Reply only to the list, not to individuals. Now i downloaded the tcnative.jar That won't help; the contents of that jar are already included in the standard Tomcat jars. Remove

RE: Configure SSL under Tomcat 7

2012-03-19 Thread ayouB __
Hi, Sorry it'll be the first and the last time i send a private message to somebody, i didn't know the community's rules ! Well, now i downloaded the file you indicated me which is :

Re: Configure SSL under Tomcat 7

2012-03-19 Thread Mark Thomas
On 19/03/2012 15:30, ayouB __ wrote: Hi, Sorry it'll be the first and the last time i send a private message to somebody, i didn't know the community's rules ! Well, now i downloaded the file you indicated me which is :

RE: Configure SSL under Tomcat 7

2012-03-19 Thread Caldarale, Charles R
From: ayouB __ [mailto:ayb-2...@hotmail.fr] Subject: RE: Configure SSL under Tomcat 7 1) bin/tcnative-1.dll 32-bit version 2) bin/i64/tcnative-1.dll Itanium version 3) bin/x64/tcnative-1.dll x86-64 version Which one should i put in my : apache-tomcat-7.0.26\bin, knowing that i use

RE: Configure SSL under Tomcat 7

2012-03-19 Thread ayouB __
Thanks Mark :) Which one should i put in my : apache-tomcat-7.0.26\bin, knowing that i use windows xp (32 bits) as OS ?! 1) Mark

RE: Configure SSL under Tomcat 7

2012-03-19 Thread ayouB __
-7.0.26\conf i modified my Tomcat's server.xml to be able to support HTTPS as it has been said in apache tomcat's documentation from the official website and as it had been said in the e-book : Apache Tomcat 7 (Aleska Vukotic and James Goodwill) in the chapter 7 : Securing tomcat with SSL ! (Step

RE: Configure SSL under Tomcat 7

2012-03-19 Thread ayouB __
I'm disturbed that i wrote things unlike what i think !! I want say : what things i'm supposed ... instead of what things i'm supported ... They didn't even talked ... instead of They even talked ... Thanks.

RE: Configure SSL under Tomcat 7

2012-03-19 Thread Justin Larose
ayouB __ ayb-2...@hotmail.fr wrote on 03/19/2012 01:00:59 PM: From: ayouB __ ayb-2...@hotmail.fr To: users@tomcat.apache.org Date: 03/19/2012 01:01 PM Subject: RE: Configure SSL under Tomcat 7 Still not working !! I downloaded Apache Tomcat 7.0.26 (again), i added the tcnative-1.dll

Re: Configure SSL under Tomcat 7

2012-03-19 Thread Filip Hanik Mailing Lists
Subject: RE: Configure SSL under Tomcat 7 Still not working !! I downloaded Apache Tomcat 7.0.26 (again), i added the tcnative-1.dll in my : apache-tomcat-7.0.26\bin, i created a keystore file with this command : keytool -genkeypair -alias tomcat -keyalg RSA -keystore C:\mykeystore i put

RE: Configure SSL under Tomcat 7

2012-03-19 Thread ayouB __
hi filip, Can you explain me more what certificate format is used with APR how can i get it please ! Thanks.

Re: Configure SSL under Tomcat 7

2012-03-19 Thread Luciano Andress Martini
I know that you will think this is strange, but i prefer to use the apache2 as a proxy to the tomcat server creating this lines in a ssl virtualhost: ProxyPass / http://127.0.0.1:8080 ProxyPassReverse / http://127.0.0.1:8080 Yes the data will be encrypted. 2012/3/19, ayouB __

RE: Configure SSL under Tomcat 7

2012-03-19 Thread Caldarale, Charles R
From: ayouB __ [mailto:ayb-2...@hotmail.fr] Subject: RE: Configure SSL under Tomcat 7 Can you explain me more what certificate format is used with APR how can i get it please ! Read the docs: http://tomcat.apache.org/tomcat-7.0-doc/apr.html#APR_Connectors_Configuration - Chuck

RE: Configure SSL under Tomcat 7

2012-03-19 Thread ayouB __
Hi, I'm asking you again, pleaase tell me from where and how they get these files : localhost.crt localhost.key !!! Thanks.

Re: Configure SSL under Tomcat 7

2012-03-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ayoub, On 3/19/12 1:51 PM, ayouB __ wrote: Can you explain me more what certificate format is used with APR how can i get it please ! APR uses PEM-formatted X.509 certificate format and keys are in separate text blocks. Use OpenSSL to generate

Re: Configure SSL under Tomcat 7

2012-03-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Luciano, On 3/19/12 1:58 PM, Luciano Andress Martini wrote: I know that you will think this is strange, but i prefer to use the apache2 as a proxy to the tomcat server creating this lines in a ssl virtualhost: ProxyPass / http://127.0.0.1:8080

Configure SSL under Tomcat 7

2012-03-16 Thread ayouB __
Hi every one, I'm ayoub and i'm a new member of this mailing list :) Well, i want to configure SSL under Tomcat 7 so i have followed steps said in http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html, but when i deploy my project in tomcat server i don't get : https://loclhost:8080/ i still

Re: Configure SSL under Tomcat 7

2012-03-16 Thread Filip Hanik Mailing Lists
Subject: Configure SSL under Tomcat 7 Hi every one, I'm ayoub and i'm a new member of this mailing list :) Well, i want to configure SSL under Tomcat 7 so i have followed steps said in http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html, but when i deploy my project in tomcat server i

RE: Configure SSL under Tomcat 7

2012-03-16 Thread ayouB __
=localhost_access_log. suffix=.txt pattern=%h %l %u %t quot;%rquot; %s %b / /Host /Engine /Service /Server Date: Fri, 16 Mar 2012 10:41:38 -0600 From: devli...@hanik.com To: users@tomcat.apache.org Subject: Re: Configure SSL under Tomcat 7 set SSLEnabled=true in your Connector element, that turns

RE: Configure SSL under Tomcat 7

2012-03-16 Thread ayouB __
Sorry :D i want say server.xml From: ayb-2...@hotmail.fr To: users@tomcat.apache.org Subject: RE: Configure SSL under Tomcat 7 Date: Fri, 16 Mar 2012 16:50:14 + Here's My service.xml file : ?xml version='1.0' encoding='utf-8'? !-- Licensed to the Apache Software Foundation

Re: Configure SSL under Tomcat 7

2012-03-16 Thread Filip Hanik Mailing Lists
Sent: Friday, March 16, 2012 10:52:13 AM Subject: RE: Configure SSL under Tomcat 7 Sorry :D i want say server.xml From: ayb-2...@hotmail.fr To: users@tomcat.apache.org Subject: RE: Configure SSL under Tomcat 7 Date: Fri, 16 Mar 2012 16:50:14 + Here's My service.xml

RE: Configure SSL under Tomcat 7

2012-03-16 Thread ayouB __
attributes. Thanks :) Date: Fri, 16 Mar 2012 10:57:01 -0600 From: devli...@hanik.com To: users@tomcat.apache.org Subject: Re: Configure SSL under Tomcat 7 ok, check your logs for errors. You must have APR libraries with OpenSSL installed, and you must specify the SSLCertificateFile

<    1   2   3   4   >