>
from: Vendula Lucakova Posted on Wed, Dec 9, 2015 8:00 AMOverview
If you want to send or receive messages signed by root authorities and these authorities are not installed on the server, you must add a trusted root certificate manually.
Use the following steps to add or remove trusted root certificates to/from a server.
Mac OS X
AddUse command: sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ~/new-root-certificate.crtRemoveUse command:
sudo security delete-certificate -c ""
Windows
Add Use command:
certutil -addstore -f "ROOT" new-root-certificate.crtRemove
Use command:
certutil -delstore "ROOT" serial-number-hex
Linux (Ubuntu, Debian)
Add
Copy your CA to dir /usr/local/share/ca-certificates/
Use command:
sudo cp foo.crt /usr/local/share/ca-certificates/foo.crtUpdate the CA store:
sudo update-ca-certificatesRemove
Remove your CA. Update the CA store: sudo update-ca-certificates --freshRestart Kerio Connect to reload the certificates in the 32-bit versions or Debian 7.Linux (CentOs 6)
AddInstall the ca-certificates package: yum install ca-certificates Enable the dynamic CA configuration feature: update-ca-trust force-enable Add it as a new file to /etc/pki/ca-trust/source/anchors/: cp foo.crt /etc/pki/ca-trust/source/anchors/ Use command: update-ca-trust extractRestart Kerio Connect to reload the certificates in the 32-bit version.Linux (CentOs 5)
Add Append your trusted certificate to file /etc/pki/tls/certs/ca-bundle.crtcat foo.crt >> /etc/pki/tls/certs/ca-bundle.crtRestart Kerio Connect to reload the certificates in the 32-bit version.
Comentários