Sysadmin:ImportantInfo:SSLcerts

From Earlham CS Department
Jump to navigation Jump to search
  • GTECyberTrustGlobalRoot.crt - The root cert (SSLCertificateFile)
  • ComodoSecurityServicesCA.crt - The Intermediate cert (SSLCACertificateFile), I think this might also be a chain cert as well.
  • STAR_earlham_edu.crt - Our Public key cert (SSLCertificateFile)
  • newwildcard.earlham.edu.key - Our private key (SSLCertificateKeyFile)

Through CACert

  1. Generate a key:

openssl genrsa -des3 -out server.keyencrypted 1024

  1. Generate a certificate request:

openssl req -new -key server.key -out server.csr

  1. Login to CACert, and request a new certificate using server.csr.
  2. Copy-and-paste generated certificate into server.crt.