GENERATE A CERTIFICATE SIGNING REQUEST (CSR) FOR ORION WEB SERVER

Problem

How to generate a CSR for Orion Web Server

How do I generate a CSR for an Orion Web Server

Resolution

NOTE:A key length of 1024 bit is the default, but Thawte recommends the use of a 2048 bit key.
If the request is intended for an Extended Validation certificate or a certificate with a validity period beyond December 31, 2013, the 2048 bit key length will need to be selected.

To Generate a CSR for an Orion Web Server, perform the following steps:

Orion Webserver Keygen Instructions

Creating a keystore with a certificate:

  1. keytool -genkey -keyalg "RSA" -keystore keystore -storepass 123456 -validity 360 
  2. keytool -certreq -keyalg "RSA" -file my.host.com.csr -keystore keystore 
  3. Submit your CSR to Thawte.
  4. Once the certificate is issued, paste it into my.host.com.cer
  5. keytool -keystore keystore -keyalg "RSA" -import -trustcacerts -file my.host.com.cer

You should now have a keystore file in your current directory

Creating a secure site:

  1. Copy the default-web-site.xml config in the /config directory to secure-web-site.xml and edit it.
  2. Add secure="true" as an attribute to the <web-site ...> <web-site> tag.
  3. Add <ssl-config keystore="../my/keystore" keystore-password="123456" /> the keystore to the main body.
  4. Install the site: this is done by adding %lt;web-site path="./secure-web-site.xml" /> the site to server.xml.

To install your certificate on Orion Web Server, follow the instructions in solution: SO3864

Was this answer helpful? 0 Users Found This Useful (0 Votes)