Courier IMAP  Print this Article

1. Login to server via terminal client.

2. At the prompt, type ("server" is your server name):

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

3. This begins the process of generating 2 files:

  • Private-Key - for decryption of certificate,
  • CSR - to issue SSL certificate.

4. As a Common Name type full domain name (FQDN) which will be secured. In case of  Wildcard certificates, use * character at the beginning (*.yourdomain.com).

5. Enter organization information (some can be set already).

6. This will start CSR generation.

7. Open it with Notepad document including BEGIN and END lines. Save it as yourdomain.csr - you will need it to issue your SSL certificate.

Was this answer helpful?

Related Articles

What is CSR and who needs it?
A Certificate Signing Request is a text generated on the server that is used to create your SSL...
Apache/OpenSSL
To generate a pair of private key and public Certificate Signing Request (CSR) for a webserver,...
Apache (with mod_ssl)
Installing SSL certificate on Apache with mod_ssl To install certificate you need 2...
Apache (Multi-Domain version)
To generate CSR file which includes more than one Fully Qualified Domain Name, you need to...
Apple Mac OS X Server
CSR is generated in 2 steps.I. Private key generation1. Log into server and open...