OpenSSL Generating a Certificate Signing Request

From UNIX Systems Administration
Revision as of 17:46, 12 February 2013 by Michael Kohler (talk | contribs) (Created page with "== Generate the Certificate Signing Request (CSR) == === Apache with mod_ssl Enabled === # Generate the CSR from the private key using openssl. ## <tt>'''# openssl req -new -k...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Generate the Certificate Signing Request (CSR)

Apache with mod_ssl Enabled

  1. Generate the CSR from the private key using openssl.
    1. # openssl req -new -key <private key name>.key -out <csr name>.csr
  2. Enter the information as required by the prompts.
  3. Verify the checksum of the key, this will be used to verify the CSR and the self signed certificate.
    1. # openssl req -noout -modulus -in <CSR.csr> | openssl md5

Further Reading

  1. How to Generate SSL key, CSR, and Self Signed Certificate for Apache