Re: SSL on Tomcat 9

2024-10-09 Thread Ron Boyer
-3143 From: Mark Thomas Sent: Wednesday, October 9, 2024 10:48 AM To: users@tomcat.apache.org Subject: Re: SSL on Tomcat 9 [You don't often get email from ma...@apache.org. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] On 09/10/2024

Re: SSL on Tomcat 9

2024-10-09 Thread Mark Thomas
On 09/10/2024 07:47, Ron Boyer wrote: hello, I am trying to renew the SSL certificate from a signing authority. I am running Tomcat 9. I understand that I have to import PKCS #12 certificate. I seem to be able to make one, but I don't think it is correct. My signing authority, GoDaddy, wil

Re: SSL on Tomcat 9

2024-10-09 Thread Ron Boyer
Subject: Re: SSL on Tomcat 9 [You don't often get email from asash...@yahoo.com.invalid. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] Hi, On windows, one can use OpenSSL to export the private key and certificate to .p12, then import that to the key

Re: SSL on Tomcat 9

2024-10-09 Thread Ahmed Ashour
Hi, On windows, one can use OpenSSL to export the private key and certificate to .p12, then import that to the key store. openssl pkcs12 -export -in fullchain.pem -inkey privatekey.pem -out server.p12 -name tomcatkeytool -importkeystore -deststorepass changeit -destkeystore localhost-rsa.jks -s