How can I install Entrust Apple Root Certificate on a Linux platform (Fedora 14)?

I am working on configuring ApnsPHP to communicate with Apple Push Server. It is required to install / import the root certificate Entrust into the system.

So I need to download the .cer file and convert it to .pem and put it in / etc / ssl / certs?

Do I need to install any conf file or reboot the system to make it ready to use?

Thanks.

ps I am using Apache LAMPP on Fedora 14 now

+4
source share
1 answer

For exact paths you need to refer to update-ca-certificates (2) , but the gist is this:

  • Copy the certificate (in the form of .crt ) to / usr / local / share / ca -certificates
  • Run update-ca certificates with the appropriate credentials.

You may need to change some entries in the / etc / ca -certificates.conf file and / or change the paths for your system - however this should not be a big problem.

-1
source

All Articles