Quantcast
Channel: Attunity Integration Technology Forum
Viewing all articles
Browse latest Browse all 411

Running Replicate 5.x on Alternate Ports

$
0
0
Running Replicate on Alternate Ports

Version 5 of Replicate uses two ports; one for the UI Server and one for the Replicate Server.

NOTE: The UI Server is also known as the REST API Server, as that is the protocol that is used between the browser and the UI Server.

If you need to run the UI Server on a different port then you can specify the parameter rest_port=<port> when you start the server. This is the port that would need to be opened through a firewall to allow the browser to communicate with the UI Server. The default UI Server port is 3552.

Example:
./repctl service start rest_port=3030

This is the port that you would specify in the URL of the browser.
https://server.name:3030/attunityreplicate

If you need to run the Replicate Server on a different port you can specify the parameter port=<port>.

The only time you would need to change this port is if you have a port conflict on the server or if you are running multiple copies of the Replicate Server on the same machine.

This port is not connected to externally so there is no need to open the port through the firewall. The default Replicate Server port is 3550.

Example:
./repctl service start port=1234

NOTE: You can override both ports if required by adding both parameters to the service start.
./repctl service start rest_port=3030 port=1234

Viewing all articles
Browse latest Browse all 411

Trending Articles