Installing GlobalSign SSL Certificate on cPanel Server

From ben90.com

Every time I have to install a GlobalSign SSL Certificate, I always find myself referring to notes that I wrote when I first had to install one. I thought that it may be a good idea to post the process here for mine and anyone else’s reference.

The aim of this post is to guide you from getting from your p12 file to an installed certificate. This guide assumes that you have OpenSSL installed on your PC / Server.

Get your GlobalSign PKCS12 certificate (probably globalsigncert.p12)
Navigate to the directory where the p12 file is on your PC/Server

Run the command

openssl pkcs12 -nocerts -in globalsigncert.p12 -out ssl.key

You will be prompted for the password that you set when you ordered the certificate. (Remember that GlobalSign append some extra characters to the password).
You will be prompted to enter a PEM pass phrase. I usually just enter the same password as the p12 file.
You will now have a file named ssl.key

Run the command

openssl rsa -in ssl.key -out ssl.key

You will be prompted for the pass phrase for ssl.key. Enter the password you used when you were asked for a password in step 5
The file named ssl.key will now be decoded so that it can be installed on a cPanel server

Run the command

openssl pkcs12 -clcerts -nokeys -in globalsigncert.p12 -out ssl.crt

You will now need to enter the password to your p12 file again

You now have all of the files that you need to install the certificate on a cPanel server (ssl.key & ssl.crt).

At this point, we can either install the certificate via WHM, or in cPanel. I will outline both methods below.

WHM SSL Install Instructions

Login to WHM
Go to “Install a SSL Certificate and Setup the Domain” on the left hand side

Copy the contents of ssl.crt into the top box (The three boxes Domain, User and IP should be auto filled by cPanel)

Copy the contents of ssl.key into the middle box

Navigate to http://www.globalsign.com/support/intermediate-root-install.html

Click on the appropriate link for the type of SSL certificate that you have

Copy the Intermediate certificate into the third (bottom) box in WHM
Finally click Submit at the top

Hopefully, it should have installed properly and cPanel will give a message indicating this

cPanel SSL Install Instructions
Login to cPanel on the account that you would like to install the SSL certificate on

Go to the “SSL/TLS Manager” option

Click “Activate SSL on Your Web Site (HTTPS)”

Select the domain you would like to install the SSL certificate on at the top

Copy the contents of ssl.crt into the top box

Copy the contents of ssl.key into the second box

Navigate to http://www.globalsign.com/support/intermediate-root-install.html

Click on the appropriate link for the type of SSL certificate that you have

Copy the Intermediate certificate into the third (bottom) box

Click Install Certificate at the bottom

Hopefully, you should then see a success message

Just for informational purposes: I extracted my key/crt files on a CentOS 5 machine running OpenSSL version 0.9.8e-fips-rhel5. I have completed the same process before on a Windows machine before, and the process is almost identical.

g33kadmin

I am a g33k, Linux blogger, developer, student and Tech Writer for Liquidweb.com/kb. My passion for all things tech drives my hunt for all the coolz. I often need a vacation after I get back from vacation....

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.