How to create a .pem File for SSL Certificate Installations

From MedITEX - Wiki

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
 
<h1 style="left: 174.5px;">Creating a .pem File for SSL Certificate Installations</h1>
 
<h1 style="left: 174.5px;">Creating a .pem File for SSL Certificate Installations</h1>
<h2>.pem SSL Creation Instructions</h2>
+
<h3></h3>
 
<p>SSL .pem files (concatenated certificate container files), are  frequently required for certificate installations when multiple  certificates are being imported as one file.</p>
 
<p>SSL .pem files (concatenated certificate container files), are  frequently required for certificate installations when multiple  certificates are being imported as one file.</p>
 
<p>&nbsp;</p>
 
<p>&nbsp;</p>
<p><strong>Creating a .pem with the Entire SSL Certificate Trust Chain</strong></p>
+
<h3>Creating a .pem with the Entire SSL Certificate Trust Chain</h3>
 
<ol> </ol>
 
<ol> </ol>
 
<p>1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt), Root (TrustedRoot.crt), and Primary Certificates (your_domain_name.crt).</p>
 
<p>1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt), Root (TrustedRoot.crt), and Primary Certificates (your_domain_name.crt).</p>
Line 23: Line 23:
 
<p>Save the combined file as <strong>your_domain_name.pem</strong>. The .pem file is now ready to use.</p>
 
<p>Save the combined file as <strong>your_domain_name.pem</strong>. The .pem file is now ready to use.</p>
 
<p>&nbsp;</p>
 
<p>&nbsp;</p>
<p><strong>Creating a .pem with the Server and Intermediate Certificates</strong></p>
+
<h3>Creating a .pem with the Server and Intermediate Certificates</h3>
 
<ol> </ol>
 
<ol> </ol>
 
<p>1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt) and Primary Certificates (your_domain_name.crt).</p>
 
<p>1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt) and Primary Certificates (your_domain_name.crt).</p>
Line 43: Line 43:
 
<p>Save the combined file as <strong>your_domain_name.pem</strong>. The .pem file is now ready to use.</p>
 
<p>Save the combined file as <strong>your_domain_name.pem</strong>. The .pem file is now ready to use.</p>
 
<p>&nbsp;</p>
 
<p>&nbsp;</p>
<p><strong>Creating a .pem with the Private Key and Entire Trust Chain</strong></p>
+
<h3>Creating a .pem with the Private Key and Entire Trust Chain</h3>
 
<ol> </ol>
 
<ol> </ol>
 
<p>1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt) and Primary Certificates (your_domain_name.crt).</p>
 
<p>1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt) and Primary Certificates (your_domain_name.crt).</p>

Revision as of 15:32, 12 August 2016

Contents

Creating a .pem File for SSL Certificate Installations

SSL .pem files (concatenated certificate container files), are frequently required for certificate installations when multiple certificates are being imported as one file.

 

Creating a .pem with the Entire SSL Certificate Trust Chain

1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt), Root (TrustedRoot.crt), and Primary Certificates (your_domain_name.crt).

2. Open a text editor (such as wordpad) and paste the entire body of each certificate into one text file in the following order:

  1. The Primary Certificate - your_domain_name.crt
  2. The Intermediate Certificate - DigiCertCA.crt
  3. The Root Certificate - TrustedRoot.crt

Make sure to include the beginning and end tags on each certificate. The result should look like this:

<tbody> </tbody>
BEGIN CERTIFICATE
(Your Primary SSL Certificate: your_domain_name.crt)
END CERTIFICATE
BEGIN CERTIFICATE
(You Intermediate Certificate: DigiCertCA.crt)
END CERTIFICATE
BEGIN CERTIFICATE
(Your Root Certificate: TrustedRoot.crt)
END CERTIFICATE

Save the combined file as your_domain_name.pem. The .pem file is now ready to use.

 

Creating a .pem with the Server and Intermediate Certificates

1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt) and Primary Certificates (your_domain_name.crt).

2. Open a text editor (such as wordpad) and paste the entire body of each certificate into one text file in the following order:

  1. The Primary Certificate - your_domain_name.crt
  2. The Intermediate Certificate - DigiCertCA.crt

Make sure to include the beginning and end tags on each certificate. The result should look like this:

<tbody> </tbody>

BEGIN CERTIFICATE
(Your Primary SSL Certificate: your_domain_name.crt)
END CERTIFICATE
BEGIN CERTIFICATE
(You Intermediate Certificate: DigiCertCA.crt)
END CERTIFICATE

Save the combined file as your_domain_name.pem. The .pem file is now ready to use.

 

Creating a .pem with the Private Key and Entire Trust Chain

1. Log into your <a href="https://www.digicert.com/account/">DigiCert Management Console</a> and download your Intermediate (DigiCertCA.crt) and Primary Certificates (your_domain_name.crt).

2. Open a text editor (such as wordpad) and paste the entire body of each certificate into one text file in the following order:

  1. he Private Key - your_domain_name.key
  2. The Primary Certificate - your_domain_name.crt
  3. The Intermediate Certificate - DigiCertCA.crt
  4. The Root Certificate - TrustedRoot.crt

Make sure to include the beginning and end tags on each certificate. The result should look like this:

<tbody> </tbody>
BEGIN RSA PRIVATE KEY
(You Private Key: you_domain_name.key)
END RSA PRIVATE KEY
BEGIN CERTIFICATE
(Your Primary SSL Certificate: your_domain_name.crt)
END CERTIFICATE
BEGIN CERTIFICATE
(You Intermediate Certificate: DigiCertCA.crt)
END CERTIFICATE
BEGIN CERTIFICATE
(Your Root Certificate: TrustedRoot.crt)
END CERTIFICATE

Save the combined file as your_domain_name.pem. The .pem file is now ready to use.

 

 

<tbody> </tbody>
<a href="/index.php?title=Administrators_Support">Back to Administrators support
</a>
<a href="#top">Back to top</a>