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
I uploaded the server.csr file to Network Solutions and got back 4 "crt" files.
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