After installing a new BMC Atrium Orchestration / TrueSight Orchestration (TSO) peer. When starting it, it never joins the grid; it always displays as red in Grid Manager even though the service is running. When we check the logs for other peers, the below errors are captured in the logs. |
On your new peer, open the file [TSO_HOME]/server/.jms/broker-config.xml. The file will look like this: <broker-config> The <uri> element value listed in this file is the IP address the peer sends to the other peers. If that IP address is not valid or reachable from other peers, peer communication will fail and the peer will not be able to join the grid. To correct this, follow these steps:
<broker-config>
You may want your peer to use multiple IP addresses for different communications, as when it needs one IP to connect to other peers and a second IP to connect to Development Studio. In that case you can add multiple <address> elements to the <advertise-addresses> block: <advertise-addresses> <address>172.xx.xx.xx</address> <address>10.xx.xx.xx</address> </advertise-addresses> |