Edit the server.xml file to tell the SAM Tomcat server which secure port and protocol to use.

Update the https connector configuration in server.xml in this path, c:\InCharge\SAM\smarts\tomcat\conf.

Procedure

  1. Uncomment the https connector configuration in server.xml.
  2. Add the path to the keystore file and the password. For example,
     <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
                   maxThreads="150" SSLEnabled="true" scheme="https" secure="true" keystoreFile="C:\InCharge\SAM\smarts\keystore"
    keystorePass="changeit"
                   clientAuth="false" sslEnabledProtocols="TLSv1.2" />
    
    Note: Update the sslEnabledProtocols, if you are using different version s of TLS.