Knowledgebase

How do I make my own bundle file from CRT files?  Print this Article

You may do this using you favorite text editor or by using the command line.

Example:
# Root CA Certificate - AddTrustExternalCARoot.crt

# Intermediate CA Certificate 1 - UTNAddTrustSGCCA.crt

# Intermediate CA Certificate 2 - ComodoUTNSGCCA.crt

# Intermediate CA Certificate 3 - EssentialSSLCA_2.crt

# Your SSL Certificate - yourDomain.crt

Note: You will not need your SSL certificate for this exercise.

GUI Text Editor

  1. Open All files in a text editor. (Remember, not your domain certificate.)
  2. Create a new blank text file.
  3. Copy contents of all files in reverse order and paste them into the new file.
    Example: Intermediate 3, Intermediate 2, Intermediate 1, Root Certificate.
  4. Save newly created file as 'yourDomain.ca-bundle'.

Command Line

Linux or UNIX-like Operating Systems:

 -- cat EssentialSSLCA_2.crt ComodoUTNSGCCA.crt UTNAddTrustSGCCA.crt AddTrustExternalCARoot.crt > yourDomain.ca-bundle





Windows or DOS:
 -- copy EssentialSSLCA_2.crt + ComodoUTNSGCCA.crt + UTNAddTrustSGCCA.crt + AddTrustExternalCARoot.crt yourDomain.ca-bundle





Was this answer helpful?

Related Articles

Java Keytool: commands
Deleting a certificate:  keytool -delete -alias aliasname List all of the...
Convert certificates formats (PEM/P7B/PFX/DER)
You can change certificate format using OpenSSL commands or SSL Converter tool. The...
Changing .crt file into the .cer format
Double-click on the yourwebsite.crt file to open it into the certificate display. In a new...
Converting .pfx file for use with Apache
Run the following command with open SSL:  openssl pkcs12 -in mypfxfile.pfx -out...
Backing up and Restoring the pending request in IIS 5 or 6
Backing up the private key of the pending request Go to menu Start, select Run,...