This article details how to import the certificate into Aria Operations for logs trust store
VMware Aria Operations for logs 8.x
Follow the below procedure to add certificate into Aria Operations for logs trust store:
/usr/java/jre-vmware/bin/keytool -import -alias <certificate_name> -file <path_to_certificate> -keystore /usr/java/jre-vmware/lib/security/cacerts
path_to_cetrtificate
is the location where the certificate is stored that needs to be imported, and certificate_name
can be any alias of your choice.
Example: /usr/java/jre-vmware/bin/keytool -import -alias cacert -file /tmp/cacert.pem -keystore /usr/java/jre-vmware/lib/security/cacerts
/usr/java/jre-vmware/bin/keytool -list -keystore /usr/java/jre-vmware/lib/security/cacerts -storepass changeit
Note: The certificate imported will not be listed in the Aria operations for logs UI, but all SSL connection will succeed because the certificate is in the trust store.