Wednesday 9 November 2016

Setting up Load balancer in OTM 6.3.x version

Below changes need to perform in OTM Web servers only.

1. Back up the existing server.xml file:
$ cd <otm_install_dir>/tomcat/config
$ cp server.xml server.xml_date



2. Edit the server.xml file and locate the following section:
<Connector address="localhost" port="8009" protocol="HTTP/1.1"
connectionTimeout="3600000"
proxyName="www.abc.com" proxyPort="4443"
URIEncoding="UTF-8" />



3. Change it to add the line in bold:
<Connector address="localhost" port="8009" protocol="HTTP/1.1"
connectionTimeout="3600000"
scheme="https" secure="true"
proxyName="www.abc.com" proxyPort="4443"
URIEncoding="UTF-8" />



4. restart the Web server instance

No comments:

Post a Comment