You can install a cluster node for the Domain Orchestrator. A cluster node extends the processing power of the Domain Orchestrator and therefore can improve performance. A cluster node shares the same databases that were configured for the other existing nodes which are a part of the Domain Orchestrator cluster.
Before you install, perform the following prerequisites:
Follow these steps:
See JDK Prerequisites.
worker.node2.port=8009
worker.node2.host=hostname
worker.node2.type=ajp13
worker.node2.lbfactor=1
worker.loadbalancer.balance_workers=node1,node2
Note: For third and subsequent nodes, follow the same instructions, but substitute the correct node number for node2, for example, node3 or node4.
Note: The node2_hostname is the IP address or DNS name of the host where the node2 is installed. The jetty_server_port is the “Server Port” value supplied during installation of the first node of the Domain Orchestrator. Enter 80 for simplified communication or enter 7003 for deprecated communication.
// node1 is the worker node name
upstream node1{
# Define node1
server node2_hostname:jetty_server_port max_fails=3 fail_timeout=3s;
}
// node2 is the worker node name
upstream node2{
# Define node2
server node2_hostname:jetty_server_port max_fails=3 fail_timeout=3s;
}
Server{
...
location = /ws {
// node1 is the upstream name provided above
proxy_pass http://node1;
}
location = /ws/ {
// node1 is the upstream name provided above
proxy_pass http://node1;
}
location = /ws/node1 {
// node1 is the upstream name provided above
proxy_pass http://node1;
}
location /ws/node1/ {
// node1 is the upstream name provided above
proxy_pass http://node1;
}
location = /ws/node2 {
// node2 is the upstream name provided above
proxy_pass http://node2;
}
location /ws/node2/ {
// node2 is the upstream name provided above
proxy_pass http://node2;
}
}
|
Copyright © 2014 CA.
All rights reserved.
|
|