Contents
Index
Search
Collapse All
Expand All
Previous
Next
Search
Toggle Highlight
Creating an SSL Certificate
Procedure
Create the Tomcat SSL certificate for the
IMSS
management console, as follows:
%IMSS_HOME%\UI\javaJRE\bin\keytool -genkey -alias tomcat -keyalg RSA -sigalg SHA1withRSA -keystore %IMSS_HOME%\UI\tomcat\sslkey\.keystore -validity 3652
with a password value of
changeit
for both the certificate and the keystore itself
For more details on SSL configuration in Tomcat, visit:
http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html
Create the Apache SSL certificate for the EUQ management console, as follows:
Generate a Private Key and Certificate Signing Request (CSR):
openssl req -new > new.cert.csr
Remove pass-phrase from the key:
openssl rsa -in privkey.pem -out new.cert.key
Generate a Self-Signed Certificate:
openssl x509 -in new.cert.csr -out new.cert.cert -req -signkey new.cert.key -days 3652 -sha1
Copy the certificate and key to the Apache path:
cp new.cert.cert $IMSS_HOME/UI/apache/conf/ssl.crt/server.crt
cp new.cert.key $IMSS_HOME/UI/apache/conf/ssl.key/server.key