Connection could not be established to Aria Operations for logs. Certificates have not been trusted.
'VMware Cloud Director 10.6
VMware Aria Operations for Logs 8.18.x
The default self signed certificate used by Aria Operations for Logs does not contain SAN details which is required by Cloud Director for this integration.
If possible, request a CA signed certificate from your certificate authority which contains the DNS information for all Aria Operations for Logs nodes in its SAN details.
Please see Install a Custom SSL Certificate for further details.
If it is not possible to obtain a CA signed certificate from a certificate authority, follow the Workaround below to generate a new self signed certificate:
/root
directory by running the following command:cd /root
openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
-keyout aofl.key -out aofl.crt -subj "/CN=<Primary_Node_FQDN>" \
-addext "subjectAltName=DNS:<Primary_Node_FQDN>,DNS:<Primary_Node_shortName>,IP:<Primary_Node_IP_address>"
Note: You will need to repeat the syntax on the -addext
line to add additional nodes information depending on how many nodes are in the cluster.
openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
-keyout aofl.key -out aofl.crt -subj "/CN=<Primary_Node_fqdn>" \
-addext "subjectAltName=DNS:<Primary_Node_FQDN>,DNS:<Primary_Node_shortName>,IP:<Primary_Node_IP_address>,DNS:<Worker1_FQDN>,DNS:<Worker1_shortName>,IP:<Worker1_IP_address>"
aofl.key, aofl.crt
), combine these files using the following command:cat aofl.key aofl.crt > multi_part.pem
multi_part.pem
to Aria Operations for Logs as per Upload Signed Certificate
With the new cert now in place, the Log Ingestion integration from Cloud Director to Aria Operations Logs will now work as expected.