![]() |
Consumption Analytics Documentation |
You can configure Secure Sockets Layer (SSL) access to Cloud Cruiser.
In the following procedure, <your_keystore_filename>
refers to a java keystore to hold your certificates. You can use a pre-existing one or a new one. See the java keytool documentation for more information.
Before you begin
To use SSL, you need a certificate issued by a certificate authority and a certificate chain. Instructions for downloading a certificate chain for your certificate vary and should be available from the certificate authority which issued your certificate.
To configure SSL
Open a command prompt and run the following commands.
Linux
# $JAVA_HOME/bin/keytool -import -alias root -keystore <your_keystore_filename> -trustcacerts -file <filename_of_the_chain_certificate>
# $JAVA_HOME/bin/keytool -import -alias tomcat -keystore <your_keystore_filename> -file <your_certificate_filename>
Windows
%JAVA_HOME%\bin\keytool -import -alias root -keystore <your_keystore_filename> -trustcacerts -file <filename_of_the_chain_certificate>
%JAVA_HOME%\bin\keytool -import -alias tomcat -keystore <your_keystore_filename> -file <your_certificate_filename>
Open <install_dir>/conf/system.properties
in a text editor and change the following properties. Remove all leading #
characters to uncomment these lines.
serverHttpsEnabled=true
serverKeystoreFile=<path_to_your_keystore_file>
serverKeystorePassword=<your_keystore_password>
serverHttpEnabled=false
When running as a Windows service, configuration changes made to server.properties
or server-template.xml
will not take effect until the service is removed and re-installed using ccservice.bat
.
(c) Copyright 2017-2020 Hewlett Packard Enterprise Development LP