3.4.1 Configuring interface on the master node

To configure interface on the master node:

  1. Login to a host machine to configure it as master node.

  2. Open the host.xml file from <JBOSS_HOME>\domain\configuration\host.xml directory for editing.

  3. Locate the following code and

    • Replace the IP address in the management tag with IP address of master node to enable slave nodes to connect with the master node.

    • Replace the IP address in the public tag with IP address of master node to allows the application to be accessed by non-local HTTP.

    • Replace the IP address in the management tag with IP address of master node to allows remote RMI access.

    <interfaces> 
        <interface name="management"> 
            <inet-address value="${jboss.bind.address.management:127.0.0.1}"/> 
        </interface> 
        <interface name="public"> 
           <inet-address value="${jboss.bind.address:127.0.0.1}"/> 
        </interface> 
        <interface name="unsecured">       
           <inet-address value="127.0.0.1" />    
        </interface> 
    </interfaces>

// Ethnio survey code removed