Procedure to export VIDM certificate using Openssl and import to Smarts-UI server

Procedure

  1. Login to VIDM Server and execute following command to export certificate:
    1. openssl s_client -connect <VIDM_FQDN>:<VIDM Port> </dev/null 2>/dev/null|openssl x509 -outform PEM > <certfilename>.pem
    2. Copy <certfilename>.pem to Smart-UI Server.
  2. Login to Smarts-UI server and execute below command to import VIDM certificate to java certs.
    1. <JAVA_HOME>/jre/bin/keytool -importcert -file <certfilename>.pem -keystore <JAVA_HOME>/jre/lib/security/cacerts -alias "<alias_name>"
    Note: Enter password as " changeit" when prompted.
  3. Restart the auth service.
    service auth restart