"Error: Certificate does not comply with OpenSSL 3.0. (Error code: 502173)"
VMware NSX
This issue is caused by an improperly formatted and incomplete certificate chain.
Formatting: There are missing line breaks between the certificates (e.g., -----END CERTIFICATE----------BEGIN CERTIFICATE-----), which prevents the system from recognizing the start of the next certificate.
To resolve this issue, you must include the whole certificate chain in the correct order (Server -> Intermediate -> Root) and ensure proper PEM formatting.
Correct Format Example:
-----BEGIN CERTIFICATE-----
<Server Certificate Data>
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
<Intermediate Certificate Data>
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
<Root Certificate Data>
-----END CERTIFICATE-----