Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Open the <ELB_HOME>/repository/conf/loadbalancer.conf file.
  2. Locate the ESB configuration and edit it as follows:

    Code Block
    languagehtml/xml
    esb {
      domains{
         wso2.esb.domain {
          domains   tenant_range *;
     {       group_mgt_port 4500;
        wso2.esb.domain    mgt {
                    hosts mgt.esb.cloud-test.wso2.com;
            }
           sub_domain worker; {
                   tenant_range    *hosts esb.cloud-test.wso2.com;
                }
            }
       }
    }

In this file, we specified the domain name (wso2.esb.domain), which is used to identify the cluster. On startup, a node with this domain name will look for a cluster with this same domain name.

...