{Optional} Enabling HTTPS on a Windows Server
Use these instructions to enable HTTPS on a Windows server.
1. Edit the Tomcat <INSTALL_INTELLICUS_DIR>\jakarta\conf\server.xml file.
2. Remove the comment from the Connector element that relates to SSL. For example, Remove the <!-- and --> lines from the beginning and end of the following element:
<!--
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled='true'
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
SSLCertificateFile="../conf/localhost.crt"
SSLCertificateKeyFile="../conf/localhost.key"
SSLPassword="intellicus" />
-->
3. Enter the following in a browser to access the Intellicus portal running under SSL:
https://<serverIP>:<port>/intellicus
For example: https://localhost:8443/intellicus
4. Run the following command to import the Intellicus certificate in the JRE truststore:
keytool -import -alias tomcat -keystore <Path to jre’s trustStore> -file "<Intellicus home path>\Jakarta\conf\localhost.crt"
Where:
<Intellicus home path>
The Intellicus installation path
<Path to JRE’s trustStore>
The path that is specified in the <SERVIGISTICS_HOME>/WebUI/WebUI.properties file for the javax.net.ssl.trustStore property.
If this property is not present, then the import needs to be performed in JRE security cacerts used by WebUI. For example:
keytool -import -alias tomcat -keystore "<%JRE_HOME%>\lib\security\cacerts" -file "<Intellicus home path> \Jakarta\conf\localhost.crt"
Where:
<%JRE_HOME%> is the path of the JRE version used by Servigistics
<INSTALL_INTELLICUS_DIR> is the Intellicus installation path
* 
This step can be performed on the AutoPilot server if it is configured on a different machine.
6. Proceed with the PAI Foundation step.
Was this helpful?