InTime Server

How to change the default ports of the InTime Server?

168 views November 22, 2016 December 28, 2016 pohheng 0

Introduction:

By default, the InTime Server uses the following networking ports.

  • Port 39940 for communicating among agents.
  • Port 39941 for file transfers.
  • Port 39942 for the Private Cloud Console.
[user@host ~]$ netstat -nap|grep LIST|grep 399
tcp 0 0 0.0.0.0:39940 0.0.0.0:* LISTEN 7953/java 
tcp 0 0 0.0.0.0:39941 0.0.0.0:* LISTEN 7953/java 
tcp 0 0 0.0.0.0:39942 0.0.0.0:* LISTEN 7953/java 

Resolution:

In this example, the user wishes to use:

  • Port 40000 for communications.
  • Port 40001 for file transfers.
  • Port 40002 for the Private Cloud Console.

Start the InTime Server with the following arguments:

[user@host ~]$ ./start_server.sh -comport 40000 -fileport 40001 -adminport 40002
[user@host ~]$ netstat -nap|grep LIST|grep 4000
tcp 0 0 0.0.0.0:40000 0.0.0.0:* LISTEN 17653/java 
tcp 0 0 0.0.0.0:40001 0.0.0.0:* LISTEN 17653/java 
tcp 0 0 0.0.0.0:40002 0.0.0.0:* LISTEN 17653/java 

In your InTime client, change the Private Cloud port to 40000. Click the "Test And Configure" button.

If everything goes well, the change(s) in the Port number(s) will take effect.

intime_new_ports

 

Applies to:

  • Linux Operating System
  • Windows Operating System

Knowledge Base ID: 201611222 - Last Review: Nov 22, 2016 - Revision: 1.0

Leave a Reply