Configuration¶
Configurable Items for Deploying Interactive with gsctl¶
When deploying Interactive using gsctl, various items can be configured. For a given configurable item named item-name, you can set its value as follows:
gsctl instance deploy --type interactive [--item-name=value]
Below is a list of all configurable items:
Item Name |
Default |
Description |
Since Version |
|---|---|---|---|
coordinator-port |
8080 |
The port of the coordinator service |
v0.3 |
admin-port |
7777 |
The port of the interactive admin service |
v0.3 |
storedproc-port |
10000 |
The port of the interactive stored procedure service |
v0.3 |
cypher-port |
7687 |
The port of the cypher service |
v0.3 |
Default Ports¶
By default, Interactive will launch the following services on these ports:
Coordinator Service: 8080
Interactive Meta Service: 7777
Interactive Cypher Service: 7687
Stored Procedure Service: 10000
You can customize these ports as needed. For example:
gsctl instance deploy --type interactive --coordinator-port 8081 --admin-port 7778 --cypher-port 7688 --storedproc-port 10001