How To Generate SSL Key, CSR and Self Signed Certificate For Apache

by Ramesh Natarajan on July 8, 2009

Apache mod_ssl certificateIf you want to convert your website from HTTP to HTTPS, you need to get a SSL certificate from a valid organization like Verisign or Thawte. You can also generate self signed SSL certificate for testing purpose.

In this article, let us review how to generate private key file (server.key), certificate signing request file (server.csr) and webserver certificate file (server.crt) that can be used on Apache server with mod_ssl.

Key, CSR and CRT File Naming Convention

I typically like to name the files with the domain name of the HTTPS URL that will be using this certificate. This makes it easier to identify and maintain.

  • Instead of server.key, I use www.thegeekstuff.com.key
  • Instead of server.csr, I use www.thegeekstuff.com.csr
  • Instead of server.crt, I use www.thegeekstuff.com.crt

1. Generate Private Key on the Server Running Apache + mod_ssl

First, generate a private key on the Linux server that runs Apache webserver using openssl command as shown below.

# openssl genrsa -des3 -out www.thegeekstuff.com.key 1024
Generating RSA private key, 1024 bit long modulus
.......................................++++++
...................................................++++++
e is 73547 (0x01001)
Enter pass phrase for www.thegeekstuff.com.key:
Verifying - Enter pass phrase for www.thegeekstuff.com.key:

# ls -ltr www.thegeekstuff.*
-rw-r--r-- 1 root root   963 Jun 13 20:26 www.thegeekstuff.com.key

The generated private key looks like the following.

# cat www.thegeekstuff.com.key
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: DES-EDE3-CBC,485B3C6371C9916E

ymehJu/RowzrclMcixAyxdbfzQphfUAk9oK9kK2
jadfoiyqthakLKNqw9z1MoaqkPyqeHevUm26no
AJKIETHKJADFS2BGb0n61/Ksk8isp7evLM4+QY
KAQETKjdiahteksMJOjXLq+vf5Ra299fZPON7yr
-----END RSA PRIVATE KEY-----

2. Generate a Certificate Signing Request (CSR)

Using the key generate above, you should generate a certificate request file (csr) using openssl as shown below.

# openssl req -new -key www.thegeekstuff.com.key -out www.thegeekstuff.com.csr
Enter pass phrase for www.thegeekstuff.com.key:
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [GB]:US
State or Province Name (full name) [Berkshire]:California
Locality Name (eg, city) [Newbury]:Los Angeles
Organization Name (eg, company) [My Company Ltd]:The Geek Stuff
Organizational Unit Name (eg, section) []:IT
Common Name (eg, your name or your server's hostname) []: thegeekstuff
Email Address []:

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:

# ls -ltr www.thegeekstuff.*
-rw-r--r-- 1 root root   963 Jun 13 20:26 www.thegeekstuff.com.key
-rw-r--r-- 1 root root   664 Jun 13 20:35 www.thegeekstuff.com.csr

3. Generate a Self-Signed SSL Certificate

For testing purpose, you can generate a self-signed SSL certificate that is valid for 1 year using openssl command as shown below.

# openssl x509 -req -days 365 -in www.thegeekstuff.com.csr -signkey www.thegeekstuff.com.key -out www.thegeekstuff.com.crt
Signature ok
subject=/C=US/ST=California/L=Los Angeles/O=thegeekstuff/OU=IT/CN=www.thegeekstuff.com
Getting Private key
Enter pass phrase for www.thegeekstuff.com.key:

# ls -l www.thegeekstuff*
-rw-r--r-- 1 root root   963 Jun 13 20:26 www.thegeekstuff.com.key
-rw-r--r-- 1 root root   664 Jun 13 20:35 www.thegeekstuff.com.csr
-rw-r--r-- 1 root root   879 Jun 13 20:43 www.thegeekstuff.com.crt

# cat www.thegeekstuff.com.crt
-----BEGIN CERTIFICATE-----
haidfshoaihsdfAKDJFAISHTEIHkjasdjadf9w0BAQUFADCB
kjadfijadfhWQIOUQERUNcMNasdkjfakljasdBgEFBQcDAQ
kjdghkjhfortoieriqqeurNZXCVMNCMN.MCNaGF3dGUuY29
-----END CERTIFICATE-----


You can use this method to generate Apache SSL Key, CSR and CRT file in most of the Linux, Unix systems including Ubuntu, Debian, CentOS, Fedora and Red Hat.

4. Get a Valid Trial SSL Certificate (Optional)

Instead of signing it youself, you can also generate a valid trial SSL certificate from thawte. i.e Before spending the money on purchasing a certificate, you can also get a valid fully functional 21 day trial SSL certificates from Thawte. Once this valid certificate works, you can either decide to purchase it from Thawte or any other SSL signing organization.

This step is optional and not really required. For testing purpose, you can always use the self-signed certificate that was generated from the above step.

Go to Thwate trial certificate request page and do the following:

  • Select “SSL Web Server Certificate (All servers)” under the “select your trial certificate”.
  • Do not check the PKCS #7 check-box under the “configure certificate”
  • Copy/Paste the *.csr file that you generate above in the textbox under “certificate signing request (CSR)”
  • Click on next at the bottom, which will give you a 21-day free trial certificate.


Copy/Paste the trial certificate to the www.thegeekstuff.com.crt file as shown below.

# cat www.thegeekstuff.com.crt
-----BEGIN CERTIFICATE-----
haidfshoaihsdfAKDJFAISHTEIHkjasdjadf9w0BAQUFADCB
kjadfijadfhWQIOUQERUNcMNasdkjfakljasdBgEFBQcDAQ
kjdghkjhfortoieriqqeurNZXCVMNCMN.MCNaGF3dGUuY29
-----END CERTIFICATE-----
Download Free eBook - Linux 101 Hacks

Get free Unix tutorials, tips and tricks straight to your email in-box.

If you enjoyed this article, you might also like..

  1. How To Install Or Upgrade LAMP: Linux, Apache, MySQL and PHP Stack Using Yum
  2. Perform SSH and SCP Without Entering Password on openSSH
  3. Install Apache 2 from Source on Linux
  4. SSH Key based authentication setup from openSSH to SSH2
  5. Comprehensive Guide for SSH2 Key based authentication setup
  

Vim 101 Hacks Book

{ 7 comments… read them below or add one }

1 aldo July 8, 2009 at 9:18 am

Get a Valid free SSL Certificate with CAcert

2 thanhdat July 8, 2009 at 9:31 am

Great post, Just a litte comment: I think we should enable mod_ssl for apache using “a2enmod ssl” and if you have time, please show us how to apply the cert to a website. Thanxxxxxx

3 Vimal July 8, 2009 at 10:20 am

Well written and easy to understand. I had been though this before and always found it confusing at some point or other.

4 Zeke Krahlin July 8, 2009 at 11:04 am

Thanks for the SSL tips…however, in this article you emailed to subscribers, is also included a Google advertisement at the end, called “Do Not Buy SSL”. So I went to the linked page and sho nuff: I can get top notch SSL service absolutely free, from Comodo. If it weren’t for that little ad (and if it weren’t for my subscription to your list) I would have assumed by your article, that you must always pay for SSL.

5 Ramesh Natarajan July 8, 2009 at 6:49 pm

@Aldo, Thanks for bringing CACert.org to our attention.

@thanhdat, Thanks for the mention of the a2enmod ssl. I believe all the a2* commands (a2ensite, a2dissite, a2enmod, a2dismod) are for distros based on Debian? Is that correct?

@Vimal, Thanks for your feedback. I appreciate it.

@Zeke, I’m glad it worked out for you. Like Aldo mentioned you can get free certificate from CACert.org also.

6 Orlin July 13, 2009 at 2:20 am

Hi good one,

any info how I can make Self Signed certificate for multi domain.
Because I have couple of web sites hosted on my server and I want to use this certificate for all of them I have found some how-toes but all of the are not working or incomplete or theya re talking about totaly different aproaches like to add in /etc/ssl/openssl.cfg:

0.commonName ….
and then
1.commonName…
2.commonName…

or the other thing is to add alter names
any ideas?

Thank

7 Ramesh Natarajan July 14, 2009 at 9:56 pm

@Orlin, Regarding your question: How to create a self-signed SSL certificates for multiple domains?

When you say multi-domain, are you talking about a wildcard certificates for subdomains? i.e Same SSL certificate for dev.mydomain.com, test.mydomain.com, prod.mydomain.com? If yes, while creating the certificate using openssl, use *.mydomain.com for the common name to create a certificate for multiple sub-domains.

Leave a Comment

Previous post:

Next post: