Products | Versions |
---|---|
TIBCO Streaming | 10, 11 |
In the simplest case, to start a node isolated from other nodes, install using the discoveryport parameter to 'epadmin install node' command as shown here:
epadmin install node --nodename=A.X --discoveryport=11111 epadmin --discoveryport=11111 --servicename=A.X start node
This will prevent nodes and clusters using a different discovery port from finding or interacting with the isolated node transactionally. All 'epadmin' administrative commands will need the discoveryport parameter to interact with this node, or bypass discovery by using the adminhost and adminport parameters.
To isolate a cluster on the network, configure a different Service Discovery Port for each cluster, by using a NodeDeploy HOCON configuration either in the Application Archive (ZIP file) or referenced by the 'epadmin' 'nodedeploy' parameter. The NodeDeploy configuration defines the port number as so:
Example NodeDeploy.conf:
name = "NodeDeployment" version = "1.0" type = "com.tibco.ep.dtm.configuration.node" configuration = { NodeDeploy = { nodes = { "A1.cluster" = { communication = { discoveryPort = 2222 } } } } }