Open the email we sent you, that contains the certificate for your domain name.
Copy the certificate, including the -----BEGIN CERTIFICATE----- and -----END CERTIFICATE----- lines.
Paste the certificate into a blank document in a text editor. Use an editor that will not add characters, such as TextPad.
Save the document. We recommend that you name it YourDomainName.crt and save it in your Web server's default directory for SSL certificates.
We recommend that you also back up your certificate on another computer or storage device.
Confirm which certificate you purchased, and determine which set of Intermediate and Root certificates to download.
To confirm which certificate you purchased, review your order confirmation.
If you purchased SBS Instant, download set A below.
If you purchased SBS Secure or Secure Plus, download set B below.
A -- SBS Instant
B -- SBS Secure and Secure Plus
Download the Root-Intermediate set for your domain name certificate. To download, right-click each certificate file name and select Save Target As.
Save the Root and Intermediate certificates to the same directory where you saved the certificate for your domain name.
Open your certificates in a text editor.
Open another instance of the text editor. Use an editor that will not add characters, such as TextPad.
Copy the text from each certificate and paste into the blank document to form one file (the certificate chain). The certificates should be pasted so that the Root certicate is placed at the top and the certificate for your domain name is at the bottom. For example, if you purchased SBS Instant, the order should be:
*UTN*GlobalRoot.crt
*Intermediate1CA.crt
*Intermediate2CA.crt
YourDomainName.crt
The resulting file should have one CRLF between each certificate, and no added characters or whitespace:
-----BEGIN CERTIFICATE-----
*UTN*GlobalRoot text
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
*Intermediate1CA text
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
*Intermediate2CA text
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
Your Site Certificate text
-----END CERTIFICATE-----
Importing the Certificate Chain allows browsers to recognize the certificate for your domain name. In the relevant Virtual Host section for your site, complete the following:
From the command line, run the following:
keytool -import
In a text editor, open the Tomcat configuration file:
DirectoryWhereTomcatIsInstalled/conf/server.xml
Find the section where the secure socket is configured.
Edit the socket configuration section to be consistent with the following:
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" debug="0" scheme="https" secure="true"
clientAuth="want"
keystoreFile="/certificatesPath/hostKeystore.pkcs12"
keystorePass="newPassword"
keystoreType="PKCS12"
truststoreFile="/certificatesPath/caKeystore.jks"
truststorePass="newPassword"
truststoreType="JKS"/>
Where:
port: port in which Tomcat will be listening for secured connections
clientAuth: specifies if client authentication is required. Permitted values are:
Restart Tomcat.
For more information, please see http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html
Copyright © 2008 Secure Business Services, All rights reserved. Terms of Service | Privacy Policy