The SSL and TLS certificate errors are like the following:
Missing certs:p-spring-cloud-services.login.your-domain.com:443 - exiting install.
Or
*******ERROR******** The certificate for //p-spring-cloud-services.login.your-domain.com DOES NOT have a matching Subject Alternative Name or Common Name
You must use "one single certificate" that contains all your Subject Alternative Name (SAN's) Certificates.
That includes all of the domains listed below, replacing SYSTEM_DOMAIN.TLD
with your system domain, and APPLICATION_DOMAIN.TLD
with your application domain:
If any of the above are missing from your SSL certificate, you will receive errors similar to the one above in your installation log file.
Check and make sure the certificates that have been deployed to your load balancer are correct and contain all the SAN's listed above.
Use the following command to print the certificates on the load balancer, replace <SYSTEM-DOMAIN> with your FQDN.openssl s_client -showcerts -connect api.<SYSTEM-DOMAIN>:443 < /dev/null | openssl x509 -noout -text
If your certificate is missing one of the domains listed above, you will need to correct the certificate and have the new certificate installed on your load balancer before you can continue.