By default, the Presentation Server uses the secure mode (HTTPS) mode for access.
Note
The TrueOps mobile app requires the HTTPS mode for access. If you configure the Presentation Server for HTTP mode, you cannot use the TrueOps mobile app.
To configure the Presentation Server for non-secure (HTTP) mode, perform the following steps:
Comment out the security-constraint
section so that it reads as follows:
<!--
<security-constraint>
<web-resource-collection>
<web-resource-name>Secure context</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
-->
Modify the following line:
<Connector connectionTimeout="20000" enableLookups="false" port="80" protocol="HTTP/1.1" redirectPort="443"/>
Remove the redirectPort information so that it reads as follows:
<Connector connectionTimeout="20000" enableLookups="false" port="80" protocol="HTTP/1.1" />
Note
The default port for Windows is 80 and Linux is 8080. If you specified a custom port during installation, enter that port number instead.
Comment out the following line so that it reads as follows:
<!--
<Connector SSLEnabled="true" clientAuth="false" keystoreFile="<installation directory>/truesightpserver/conf/secure/loginvault.ks" keystorePass="changeit" maxThreads="150" port="443" protocol="org.apache.coyote.http11.Http11Protocol" scheme="https" secure="true" sslProtocol="TLS"/>
-->
From the <Presentation Server installation directory>\truesightpserver\truesightpserver\bin folder, use a command prompt to run the following command:
tssh properties set tspsPreferredWebServiceProtocol http
tsps.tsim.http.enabled=true
Restart each Infrastructure Management server that you changed.