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:
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 the cluster is configured.
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