Changing Ports
Starting with TigerGraph 4.1, port usage for REST API requests has changed.
For more details, see the REST API reference. |
The following ports apply to TigerGraph versions earlier than 4.1:
-
9000 – serves RESTPP, which accepts upstream TigerGraph Nginx requests.
-
14240 – serves TigerGraph Nginx.
If the above ports are restricted in your environment and cannot be enabled (for whatever reason) you can change them once TigerGraph is up and running by running the following commands as tigergraph user:
For changing port 9000 (RESTPP) to something else (e.g. 9090)
$ gadmin config set RESTPP.NginxPort 9090
$ gadmin config apply
$ gadmin restart
For changing the port 14240 (Nginx) to something else (e.g. 8080)
$ gadmin config set Nginx.Port 8080
$ gadmin config apply
$ gadmin restart