It's all about the answers!

Ask a question

Port information


susovon sen (111) | asked May 21 '13, 9:33 a.m.
can any one tell me about how to know the port number for RTC?

Accepted answer


permanent link
Stephanie Bagot (2.1k1513) | answered May 21 '13, 10:42 a.m.
FORUM MODERATOR / JAZZ DEVELOPER
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.
Stephanie Bagot selected this answer as the correct answer

2 other answers



permanent link
sam detweiler (12.5k6195201) | answered May 21 '13, 9:51 a.m.
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>

permanent link
Krzysztof Kaźmierczyk (7.4k375103) | answered May 22 '13, 2:46 a.m.
The another possibility to check that is running the following command:
netstat -a -o | grep <PID>
where <PID> is process id for your CLM server running. This will work even for WAS :)

Your answer


Register or to post your answer.


Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.