FORUM MODERATOR / JAZZ DEVELOPER(2.1k●1●5●13)Jul 25 '13, 6:04 p.m.
You need to store the certificate in the Tomcat keystore, and then reference it in the server.xml file.
Here is some information from the Tomcat documentation:
http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html
Rafael Rodriguez Montes selected this answer as the correct answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means.
Learn more here.
Comments
Kevin Ramer
Jul 25 '13, 4:07 p.m.For tomcat the SSL certificate is pointed to by in the tomcat/conf/server.xml file. The current certificate may also be in that same location.
In the <Connector . /> that's ssl enabled you'll find something like:
keyAlias="rtp-rtc9" key
storeFile="rtp-rtc9.jks" keystorePass="passwerd"
put your new key file into the tomcat directory and adjust the values for keyAlias, storeFile, keystorePass and restart.