Installing a Web Certificate

Overview

When installing UnityIS for on-premises sites, a self-signed certificate is initially used for accessing the web server. This will generate the following 'Not Secure' message in the browser's address bar.

To avoid the “Not secure” warning, it is recommended that a *valid certificate be installed for the domain or subdomain name that is used to access the web server.

*Note: A Certificate Authority (CA) is an entity that issues SSL certificates. Here is list of top CA entities.

Please note that IMRON Corporation is not responsible for whichever CA you choose.


Exporting Certificates from the Windows Certificate Store

  1. Log in as an Administrator.
  2. From a command prompt or the run menu enter "mmc". 
  3. Open your Local Computer certificates (click File → Add/Remove Snap-in... → Certificates → Computer account → Next → Local computer → Finish → OK).
  4. In the folder structure navigate to Certificates (Local Computer) → Personal → Certificates.
  5. Right-click on the certificate you want to export and choose All Tasks → Export → Next.
  6. Select "Yes, export the private key" then "Next". If this option is grayed out it means whoever created the certificate originally did not mark the private key as exportable. You will not be able to export the certificate in this situation, so you will need to request a new certificate and start over–see Obtain a Certificate on Windows Server 2008 R2 and 2012 (Without Using IIS).
  7. Select the PKCS#12 option.
  8. Check the box for "Include all certificates in the certification if possible".
  9. If you will no longer need the certificate and private key on this system check "Delete the private key if the export is successful". Do not select this option if you still need to use this certificate on this system.
  10. Check the box to "Export all extended properties".
  11. Click "Next".
  12. Provide a password for the private key if you are prompted.
  13. Save the file somewhere safe as something like certname.pfx.
    Extracting Certificate and Private Key Files from a .pfx File
    Follow the steps below to extract separate certificate and private key files from the .pfx file.
  14. Take the file you exported (e.g. certname.pfx) and copy it to a system where you have OpenSSL installed. Note: the *.pfx file is in PKCS#12 format and includes both the certificate and the private key.
  15. Run the following command to export the private key: openssl pkcs12 -in certname.pfx -nocerts -out key.pem -nodes
  16. Run the following command to export the certificate: openssl pkcs12 -in certname.pfx -nokeys -out cert.pem
  17. Run the following command to remove the passphrase from the private key: openssl rsa -in key.pem -out server.key

Note: The password is the one that was used while exporting the certificate in step-12.

Rename and Copy the Files

  1. Take the files that were created key.pem and cert.pem and rename them to server.key and server.cer.
  2. Double click on the server.cer file to verify that it is valid. Below is a sample of what should be seen, with valid dates in the 'Valid from' field: 

 

  1. Copy the server.cer and server.key file to the C:\Program Files (x86)\UnityIS\web2\certificate folder and restart the web service.
Was this article helpful?