Procedure to export VIDM certificate using Openssl and import to Smarts-UI server
Procedure
- Login to VIDM Server and execute following command to export certificate:
- openssl s_client -connect <VIDM_FQDN>:<VIDM Port> </dev/null 2>/dev/null|openssl x509 -outform PEM > <certfilename>.pem
- Copy <certfilename>.pem to Smart-UI Server.
- Login to Smarts-UI server and execute below command to import VIDM certificate to java certs.
- <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.
- Restart the auth service.
service auth restart