How to change the TDM Portal port from 8443 (HTTPS) to 8080 (HTTP)
book
Article ID: 10721
calendar_today
Updated On:
Products
CA Test Data Manager (Data Finder / Grid Tools)
Issue/Introduction
The default ports for TDM Portal are 8080 for HTTP and 8443 for HTTPS. Some environments require TDM Portal to be run on a different port and without HTTPS. This document details the steps necessary to make this configuration. You can read a general overview of installing the Portal here:Install TDM Portal for Windows (broadcom.com)
Environment
CA Test Data Manager (TDM)- Portal
Resolution
This configuration not only changes the port that TDM Portal listens on, but changes the protocol from HTTPS to HTTP.
Stop the CA Test Data Manager Portal service
Stop the OrientDB service
Go to C:\Program Files\CA\CA Test Data Manager Portal\conf
Make a backup copy of the application.properties file
Open the application.properties file in a text editor Notepad (or Notepad++, etc)
Using the find and replace option enter: Find what: 8443 Replace with: 8080
Click the OK button
Verify you only see 8080 listed in file
Find security.require-ssl=true and change the value to false: security.require-ssl=false
Save file
Go to C:\Program Files\CA\CA Test Data Manager Portal\tomcat\conf
Make a backup copy of the server.xml file
Open the server.xml file in a text editor Notepad (or Notepad++, etc)
Comment out the "<Connector port="8443" protocol="HTTP/1.1" ...." line with <!-- -->. Example: <!-- <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslProtocol="TLSv1.2" keystoreFile="${tdmweb.keystorePath}" keystorePass="${tdmweb.keystorePassword}" keyAlias="${tdmweb.keyAlias}" ciphers="TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_DHE_RSA_WITH_AES_256_GCM_SHA384,TLS_DHE_RSA_WITH_AES_128_GCM_SHA256" connectionTimeout="60000"/> -->
Add a new line: <Connector port="8080" protocol="HTTP/1.1" scheme="http" clientAuth="false" connectionTimeout="60000"/>
Save the file
Start the CA Test Data Manager Portal service
Start the OrientDB service
Launch the TDM Portal in your web browser
Go to C:\ProgramData\CA\CA Test Data Manager Portal\logs
Review the startup.log in a text editor and verify that all the microservices have started
Open TDM Portal in your Web Browser to see if you can access it via the new port: http://[tdmportalhost]:8080/TestDataManager