How to install an Intermediate CA cert in Apache?

Solution Verified - Updated -

Environment

  • All Red Hat Enterprise Linux versions
  • Apache httpd - all versions

Issue

  • You need to install an Intermediate CA certificate. How to do it in Apache?

Resolution

Standard one-way HTTPS

  1. Backup up all involved files before manipulating them.
  2. Locate the Apache configuration file where your Virtual Host is configured.
  3. Locate the line "SSLCertificateChainFile". For example:

    SSLCertificateChainFile /etc/pki/tls/certs/chain.crt
    
  4. Copy and paste the contents of the Intermediate CA into your CA chain file (append to chain.crt ).

  5. Restart Apache httpd:

    # service httpd restart
    

Two-way SSL (Client Authentication)

  1. Backup up all involved files before manipulating them.
  2. Locate the Apache configuration file where your Virtual Host is configured.
  3. Locate the line "SSLCACertificateFile". For example:

    SSLCACertificateFile /etc/httpd/conf/ssl.crt/my_ca.crt
    
  4. Copy and paste the contents of the Intermediate CA into your CA cert (append to my_ca.crt ).

  5. Restart Apache httpd:

    # service httpd restart
    

This solution is part of Red Hat’s fast-track publication program, providing a huge library of solutions that Red Hat engineers have created while supporting our customers. To give you the knowledge you need the instant it becomes available, these articles may be presented in a raw and unedited form.

Comments