Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1.  Log in to DPOD's appliance.
  2.  Copy the new certificate and key file either to the current certificate directory on the DPOD appliance or to any other directory of your choice.
    The current certificate directory is:

    Code Block
    languagebash
    themeRDark
    /etc/httpd/conf/certs


  3. Open the web server configuration file for editing:

    Code Block
    languagebash
    themeRDark
    vi /etc/httpd/conf/httpd.conf


  4. Update the SSL Certificate lines:
     

    Code Block
    languagebash
    themeRDark
    SSLCertificateFile "the new certificate file path"
    SSLCertificateKeyFile "the new key file path"

    Notice that a path to a keystore (JKS/PKCS) will not be work here. 

    SSLCertificateKeyFile needs to point to a key of a "PEM" format. 

    SSLCertificateFile needs to point to a certificate of a "DER" format.  

    Note

    The certificate / key can not be stored in a keystore ( JKS, PKCS )



  5. Restart the web server

    Code Block
    languagebash
    themeRDark
    service httpd restart