Cert Expired. Now my APIs wont work

The error I get is Uncaught exception ‘KalturaClientException’ with message ‘Peer certificate cannot be authenticated with known CA certificates’

I have a pfx certificate which I converted into the appropriate formats when I first setup this server and everything worked great. However, I neglected to take notes and although I felt quite sure I remember what I did, something is not working properly because the web interface is working good, but none of my APIs are working. Any help would be greatly appreciated.

I did already run kaltura-config-all.sh again, but that did not help.

Hello,

I imagine you are just missing the CA directive.
Open /etc/httpd/conf.d/zzzkaltura.ssl.conf
and make sure you have:
SSLCertificateFile @SSL_CERTIFICATE_FILE@
SSLCertificateKeyFile @SSL_CERTIFICATE_KEY_FILE@
SSLCACertificateFile @SSL_CERTIFICATE_CHAIN_FILE@

and that each of these directives has the correct file set.
Then, reload Apache and you should be good.

Jess, You are some kind of genius. Although I was not missing the statement, as soon as I looked at it I remembered what I had done to create the chain file. Once I fixed that, everything was back up. Now I am good until 2018. Haha. Thank you.