VA tool has identifies that the certificate on the port 1514 on the vCenter Server is not trusted.
vCenter Server 6.x
vCenter Server 7.x
vCenter Server 8.x
The port 1514 on the vCenter Server is expected to use the same certificate as that of port 443.
This port is for Remote logging using syslog over TLS.
To verify if the same certificate is being used on the ports , use the below commands.
openssl s_client -connect localhost:1514 -showcerts null | openssl x509 -text -noout | grep -A 2 "depth\|Signature\|X509v3\|Issuers" | grep -A 2 "Subject Key\|Authority Key"
openssl s_client -connect localhost:443 -showcerts null | openssl x509 -text -noout | grep -A 2 "depth\|Signature\|X509v3\|Issuers" | grep -A 2 "Subject Key\|Authority Key"