WildFly Interface Configuration

From NovaOrdis Knowledge Base
Revision as of 16:28, 14 March 2017 by Ovidiu (talk | contribs) (Created page with "=Internal= * WildFly Configuration =Overview= The public interface is the network interface the standalone server node (or domain server...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

The public interface is the network interface the standalone server node (or domain server nodes) use to receive business payload.

The interface is declared in standalone.xml as:

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

or in domain.xml as:

<interfaces>
    ...
    <interface name="public"/>
    ...
</interfaces>

In the case of domain mode, the actual specifics are host dependent, so that is why the address is declared in a host-dependent manner.

For more details, see:

jboss.bind.address for Standalone and Domain Mode