Port information
Accepted answer
The default port with RTC and CLM deployments is:
HTTPS - 9443
HTTP - 9080
Keep in mind that both ports need to be open for RTC to run OOB.
As Sam mentioned above, this information is in the server.xml. If you want to change the port, it needs to be changed before the public URI is set.
HTTPS - 9443
HTTP - 9080
Keep in mind that both ports need to be open for RTC to run OOB.
As Sam mentioned above, this information is in the server.xml. If you want to change the port, it needs to be changed before the public URI is set.
2 other answers
If you are a user, you must get this info from the system administrator
if you are the administrator, you should have received this info from the installation team,
if you did not get that, you will have to look in Websphere or Tomcat configuration files to discover it.
on tomcat that is install_location/server/tomcat/conf/server.xml
and is represented on the Connector element (like this from my test server)
<code>
<Connector port="9780" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="9743" />
</code>
if you are the administrator, you should have received this info from the installation team,
if you did not get that, you will have to look in Websphere or Tomcat configuration files to discover it.
on tomcat that is install_location/server/tomcat/conf/server.xml
and is represented on the Connector element (like this from my test server)
<code>
<Connector port="9780" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="9743" />
</code>