Steps to enable https on Smarts tomcat
Tomcat service is running but unable to launch below URL, it throws Site can't be reached error.
https://<host:8443>/smarts-edaa/msa/<SAM_PRES_SERVICE>
Smarts 10.1.x / 24.3.x
Tomcat was not running on Port 8443, it was running on default port 8080
Since tomcat service is running on port 8080, launch the URL using port 8080 instead of 8443.
http://<host:8080>/smarts-edaa/msa/<SAM_PRES_SERVICE>
Additionally you can also configure the tomcat service to run on 8443 i.e. follow below steps to enable https on Smarts tomcat:
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true" keystoreFile="/opt/InCharge/SAM/
smarts/.keystore" keystorePass="xxxx"
clientAuth="false" sslEnabledProtocols="TLSv1.2" />
Note: Make sure the keystore file and password is correct in the above configuration line.
<!-- Define a non-SSL HTTP/1.1 Connector on the
port specified during installation -->
<!--
<Connector port="8080"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443"
acceptCount="100"
debug="0" connectionTimeout="20000"
disableUploadTimeout="true" />
-->
sm_service stop <tomcat>
sm_service start <tomcat>