Difference between revisions of "Installing DigiCert commercial certificates"
Line 3: | Line 3: | ||
<div class="col-md-12 ibox-content"> | <div class="col-md-12 ibox-content"> | ||
=Installing DigiCert Commercial Certificates= | =Installing DigiCert Commercial Certificates= | ||
− | + | {{WIP}} | |
− | |||
− | + | Obtain all the certificate files from Digicert and place them in a folder <code>/tmp/digicert</code> on your Zimbra server. Then create <code>commercial_ca.crt</code> as described below and verify and deploy: | |
− | + | <pre>mkdir /tmp/digicert | |
+ | cd /tmp/digicert | ||
+ | wget https://cacerts.digicert.com/DigiCertTLSRSASHA2562020CA1-1.crt.pem | ||
+ | wget https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem | ||
+ | cat DigiCertTLSRSASHA2562020CA1-1.crt.pem > commercial_ca.crt | ||
+ | cat DigiCertGlobalRootCA.crt.pem >> commercial_ca.crt | ||
− | + | cp example.com.key /opt/zimbra/ssl/zimbra/commercial/commercial.key | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | zmcertmgr verifycrt comm /opt/zimbra/ssl/zimbra/commercial/commercial.key /tmp/digicert/example.com.crt /tmp/digicert/commercial_ca.crt | |
− | + | # should return OK | |
+ | zmcertmgr deploycrt comm /tmp/digicert/example.com.crt /tmp/digicert/commercial_ca.crt | ||
− | + | # to load the changes: | |
− | + | zmcontrol restart</pre> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | </ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:Certificates]] | [[Category:Certificates]] | ||
− | [[Category:ZCS | + | [[Category:ZCS 8.0]] |
+ | [[Category:ZCS 9.0]] |
Latest revision as of 13:55, 28 March 2022
Installing DigiCert Commercial Certificates
- This article is a Work in Progress, and may be unfinished or missing sections.
Obtain all the certificate files from Digicert and place them in a folder /tmp/digicert
on your Zimbra server. Then create commercial_ca.crt
as described below and verify and deploy:
mkdir /tmp/digicert cd /tmp/digicert wget https://cacerts.digicert.com/DigiCertTLSRSASHA2562020CA1-1.crt.pem wget https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem cat DigiCertTLSRSASHA2562020CA1-1.crt.pem > commercial_ca.crt cat DigiCertGlobalRootCA.crt.pem >> commercial_ca.crt cp example.com.key /opt/zimbra/ssl/zimbra/commercial/commercial.key zmcertmgr verifycrt comm /opt/zimbra/ssl/zimbra/commercial/commercial.key /tmp/digicert/example.com.crt /tmp/digicert/commercial_ca.crt # should return OK zmcertmgr deploycrt comm /tmp/digicert/example.com.crt /tmp/digicert/commercial_ca.crt # to load the changes: zmcontrol restart