How to configure a server-side SSL certificate manually

Ops Center Protector User Guide

Version
7.9.x
Audience
anonymous
Part Number
MK-99PRT002-10
ft:lastEdition
2024-12-11

Obtain a valid SSL certificate file (.crt or .cer) and private key file (.key) for the Protector Web Server from your organization's Certificate Authority.

To configure server-side SSL for the Web UI:

  1. Copy your SSL certificate file to the folder <installation path>/bin/db/ssl/webui/certificates
  2. Copy your SSL private key file to the folder /opt/hitachi/protector/bin/db/ssl/webui/private
  3. On the Master node, open a command prompt at <installation_path>/bin.
  4. Stop the Protector hub service by entering the command diagdata --stop hub.
  5. Open the configuration file <installation_path>/db/config/uic-system-config.cfg in a text editor and do the following:
    1. Set SSL Certificate to the location of your SSL certificate file:
      <item argtype="single" name="SSL Certificate">
          <value type="string"> <installation path>/bin/db/ssl/webui/certificates/your_certificate.crt</value>
      </item>
      
    2. Set SSL Certificate Key to the location of your SSL private key file:
      <item argtype="single" name="SSL Certificate Key">
          <value type="string">/opt/hitachi/protector/bin/db/ssl/webui/private/your_key.key</value>
      </item>
      
    3. Set the Webserver SSL value to true:
      <item argtype="single" name="Webserver SSL"
      	    <value type="bool">true</value>
      <\item>
    You may need to insert the above XML within the following section of the config file:
    <cofioxmllist>
     ... 
    <\cofioxmllist>
    Note: If you cut and paste these code fragments please ensure that line ends are correctly positioned.
  6. Save the changes to the uic-system-config.cfg file.
  7. Restart the Protector hub service on the Master node by entering the command diagdata --start.