I created a private key and csr file with the following command
openssl req -nodes -newkey rsa:2048 -sha1 -keyout myserver.key -out server.csr
The two files outputted are
- myserver.key
- server.csr
I uploaded the server.csr file to Network Solutions and got back 4 "crt" files.
- AddTrustExternalCARoot.crt
- OV_NetworkSolutionsOVServerCA2.crt
- OV_USERTrustRSACertificationAuthority.crt
- STAR.{mydomain}.CA.CRT
How can I create a keystore out of the files I have and configure it in Tomcat 7 in the server.xml file.
Probably easiest way:
keystoreFile="..." keystorePass="..."
to the<Connector>
tag for the SSL port (default 8443) in your server.xml