Configuring Apache Tomcat - trillium_quality - 17.1

Trillium TS Web Services Developer Guide

Product type
Software
Product family
Trillium
Product
Trillium > Trillium Quality
Version
17.1
Language
English
Product name
Trillium Quality
Title
Trillium TS Web Services Developer Guide
Topic type
How Do I
Overview
Configuration
Reference
Administration
Installation
First publish date
2008

After the keystore file has been created, configure the Apache Tomcat web server to use the file.

To configure Tomcat to use the keystore file:

  1. Go to the conf directory in the Apache Tomcat installation directory. The following is the default location:

    • Linux: /opt/tsq/Software/apache-tomcat/conf

    • Windows: C:\Program Files\Trillium Software\MBSW\17\tsq\Software\apache-tomcat\conf

  2. Open the server.xml file.

  3. In the section <Service name="Catalina">, add the following section:

Note: Be sure to update the keystore path with the proper file location.
<Connector SSLEnabled="true" acceptCount="100" 
clientAuth="false"
disableUploadTimeout="true" enableLookups="false" 
maxThreads="25"
port="443" keystoreFile="/home/username/.keystore" 
keystorePass="mypassword
"protocol="org.apache.coyote.http11.Http11NioProtocol" 
scheme="https"
secure="true" sslProtocol="TLS" />