Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

By default, Intellicus Kyvos Reporting is installed to work without the use of SSL (Secure Sockets Layer).

However, Intellicus Kyvos Reporting Report Server and Web Portal can communicate over a secured connection using Secure Sockets Layer. This ensures that encrypted data is passed between the report server and web portal so that data remains private and integral.

...

At the time of installation, Intellicus Kyvos Reporting by default installs tomcat web server. Given here are the instructions of configuring Tomcat to work under SSL. Before going ahead, make sure Intellicus Kyvos Reporting is already installed.

Configuring SSL

...

Changes related to secure socket are made in Tomcat configuration file: server.xml.
This file has been placed at following location at the time of Installation of IntellicusKyvos Reporting:
jakartaconfserver.xml

Windows

In case of windows, Intellicus Kyvos Reporting tomcat uses APR features for performance enhancements. This requires OpenSSL style configuration for HTTPS connector. Intellicus Kyvos Reporting provides the Certificate file (localhost.crt) and the Key file (localhost.key) for this purpose. Please make sure these two files are present in <Intellicus <Kyvos Reporting Install Path>/Jakarta/conf folder.

...

Code Block
<!-- Define a SSL HTTP/1.1 Connector on port 8443
         This connector uses the OpenSSL style configuration
         described in the APR documentation. This connector
		 should be used when APR(tcnative-1.dll)is used -->
    <!--
    <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="intellicusKyvos Reporting" />
      -->

You may change the port too, if needed.

...

In case of Linux or Solaris, Intellicus Kyvos Reporting does not use APR by default. In this case a key store file should be used to run tomcat in HTTPS mode. Intellicus Kyvos Reporting provides .keystore file in <Intellicus <Kyvos Reporting Install Path>/Jakarta/conf folder.

...

Note: Optionally you can generate your own keystore file.  Please refer the following URL’s Quick start section
http://tomcat.apache.org/tomcat-8.0-doc/ssl-howto.html

Accessing

...

Kyvos Reporting running under SSL

To access Intellicus Kyvos Reporting portal running under SSL, your users will specify following URL in address-bar of the browser:

https://<serverIP>:<port>/intellicusKyvos Reporting

Example: To run Intellicus Kyvos Reporting portal running under SSL (at port 8443) from the same machine, specify following URL in address-bar of the browser:

https://localhost:8443/intellicusKyvos Reporting

Accepting the certificate

When for the first time user attempts to access Intellicus Kyvos Reporting running under SSL, he / she is typically presented with a dialog containing the details of the certificate (such as the company and contact name), and asked if wished to accept the Certificate as valid and continue working.

...