a

What do you do when your SSL Certificate expired?

I ran into this problem the other day. My SSL Certificate expired for my dev domain. I went to Network Solutions, snagged a new Certificate using my old Certificate Signing Request (CSR), and tried to import it into my keystore. In the past, I’ve always generated my private key and CSR, and then imported a […]

I ran into this problem the other day. My SSL Certificate expired for my dev domain. I went to Network Solutions, snagged a new Certificate using my old Certificate Signing Request (CSR), and tried to import it into my keystore.
In the past, I’ve always generated my private key and CSR, and then imported a new certificate along with the complete chain. Since the old expired certificate was still in the keystore, I thought it made sense to blow away the appropriate alias in the keystore with the following command.

1
%JAVA_HOME%/bin/keytool -delete -alias tomcat_ssl -keystore C:/Users/Joel/.keystore

Big mistake.
What I didn’t realize is when you blow away your alias in the keystore, it not only blows away the certificate, but the private key as well. Oops.
Luckily, I still had my private key. I was hopeful that I could just import this private key into my keystore. Strike 2!
The Java keytool does not allow you to import an existing private key. Crap. I didn’t want to go back to Network Solutions to generate a new certificate. That’s a pain. There has to be a way to get a private key into my keystore.
Luckily, there is. You can’t import a private key directly into your keystore, but you can merge a private-cert pair into an existing keystore if the private-cert pair is in PKCS12 format. How’s that for fun?
To start, you need to use openssl to generate a PKCS12 file from your pem file. The pem file needs to be a combination of first your private key followed by your crt file for the domain.

1
C:/cygwin/home/Joel/dev> cat openssl_dev.crt >> openssl_dev.pem

Next you need to run openssl with the -in parameter to generate the PKCS12 fle.

1
C:/cygwin/home/Joel/dev> openssl pkcs12 -export -in openssl_dev.pem  -out openssl_dev.p12

Now, with the PKCS12 file, you need to do a keystore merge with your existing keystore.

1
%JAVA_HOME%/bin/keytool -importkeystore -srckeystore openssl_dev.p12 -srcstoretype PKCS12 -destkeystore C:/Users/Joel/.keystore

After doing the merge, when you look into your keystore, you will see that this entry has been given an alias of 1.

1
%JAVA_HOME%/bin/keytool -list -v -keystore C:/Users/Joel/.keystore > dump.txt

You will want to change this alias to something usable,

1
%JAVA_HOME%/bin/keytool -changealias -alias 1 -destalias tomcat_ssl

Now, you will also want to import other portions of the certificate chain.

1
%JAVA_HOME%/bin/keytool -import -alias root -keystore C:/Users/Joel/.keystore -trustcacerts -file network_first_add_trust_second_carriage_return.pem

Now, when I start up my tomcat instance referencing my tomcat_ssl alias, I’m back in business!

Joel Garcia

Joel Garcia

Joel Garcia has been building AllCode since 2015. He’s an innovative, hands-on executive with a proven record of designing, developing, and operating Software-as-a-Service (SaaS), mobile, and desktop solutions. Joel has expertise in HealthTech, VoIP, and cloud-based solutions. Joel has experience scaling multiple start-ups for successful exits to IMS Health and Golden Gate Capital, as well as working at mature, industry-leading software companies. He’s held executive engineering positions in San Francisco at TidalWave, LittleCast, Self Health Network, LiveVox acquired by Golden Gate Capital, and Med-Vantage acquired by IMS Health.

Related Articles

Navigating AWS Complexity

Navigating AWS Complexity

Amazon’s Web Services is a very complex platform. Streamlining and optimizing production workflows can be challenging for inexperienced users. However, the benefit of learning grants options for better efficiency, reliability, security, and cost-effectiveness for operations run on AWS.

While complexity can be difficult to navigate, it’s not impossible. With the right level of expertise, AWS complexity can be navigated with ease.

What is Amazon Managed Grafana?

What is Amazon Managed Grafana?

Grafana stands out as a widely embraced open-source analytics and visualization platform, celebrated for its versatility in handling diverse data sources and delivering compelling dashboards and graphs. Renowned for its user-friendly interface, Grafana simplifies the process of data interpretation and enhances the overall experience by providing interactive visualizations.

AWS and re:Invent 2023

AWS and re:Invent 2023

There are plenty of AWS enthusiasts around the world such as ourselves with ideas on how to apply the Cloud in new and innovative ways. It’s a keynote where these enthusiasts come together, network, and share innovations and new methodologies with the public. Even for people less familiar with AWS, it is a great place to get first-hand experience with the platform either unguided or with professional help to see what opportunities the platform has.

Download our 10-Step Cloud Migration ChecklistYou'll get direct access to our full-length guide on Google Docs. From here, you will be able to make a copy, download the content, and share it with your team.