We have a domain controller with Certificate Authority and the CA ROOT certifcate in PKI view. I just wondering where I can find a PEM bundle of the CA ROOT certificate? Is there any one place that the files should be located?
Hi
@AdrianEM
The default CA bundle location is OS dependent. On windows, you'll see that all certificates are in /usr/share/ca-certificates. However, the default location for certificates is /etc/ssl/certs.
On RHEL5, it is located in /etc/pki/tls/certs/ca-bundle.pem. On Linux or non-Linux OSes, it may be in a different location. You can contact your CA vendor for detailed information regarding this.
You can also try
sudo find / |grep ".pem"
This will list all the .pem files present on your system and their full path.
Hope this resolves your Query!!
-------------
--If the reply is helpful, please Upvote and Accept it as an answer–