π ~1 min read
Table of contents
Symptom & Impact
HTTPS clients fail with certificate verify errors against internal services.
Environment & Reproduction
Observed after CA rotation or incomplete base image hardening.
curl -Iv https://api.internal
openssl s_client -connect api.internal:443 -servername api.internal
Root Cause Analysis
Root or intermediate CA certificates are absent from system trust anchors.
Quick Triage
Inspect presented chain and local trust anchor set.
trust list | grep -i internal -n || true
ls -l /etc/pki/ca-trust/source/anchors
Step-by-Step Diagnosis
Compare service chain to installed local anchors.
openssl s_client -showcerts -connect api.internal:443 </dev/null | sed -n '/BEGIN CERTIFICATE/,/END CERTIFICATE/p'
update-ca-trust check

Solution – Primary Fix
Install missing CA certs and rebuild trust store.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
cp /tmp/internal-root-ca.crt /etc/pki/ca-trust/source/anchors/
cp /tmp/internal-intermediate-ca.crt /etc/pki/ca-trust/source/anchors/
update-ca-trust
curl -Iv https://api.internal

Solution – Alternative Approaches
Use application specific CA bundle while central trust is being corrected.
curl --cacert /etc/pki/ca-trust/source/anchors/internal-root-ca.crt https://api.internal
Verification & Acceptance Criteria
TLS handshakes complete without verify errors.
openssl verify -CAfile /etc/pki/tls/certs/ca-bundle.crt /tmp/service.crt
Rollback Plan
Remove newly added anchors if incorrect certificates were deployed.
rm -f /etc/pki/ca-trust/source/anchors/internal-*.crt
update-ca-trust
Prevention & Hardening
Automate CA distribution with integrity checks and expiry monitoring.
openssl x509 -in /etc/pki/ca-trust/source/anchors/internal-root-ca.crt -noout -enddate
Related Errors & Cross-Refs
Related to proxy TLS interception and incomplete certificate chains on servers.
Related tutorial: View the step-by-step tutorial for oracle-linux-10.
View all oracle-linux-10 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Oracle Linux trust store and OpenSSL certificate management documentation.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.