WildFly Networking Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:


=Management Interface=
=Management Interface=
The management interface is declared, and named as such, in the <tt><interfaces></tt> section of the server's configuration file:
<pre>
...
<interfaces>
    <interface name="management"/>
    ...
</interfaces>
...
</pre>


For more details, see:
For more details, see:
Line 11: Line 22:
:[[WildFly Management Interfaces]]
:[[WildFly Management Interfaces]]
</blockquote>
</blockquote>
=Public Interface=
The public interface is declared, and named as such, in the <tt><interfaces></tt> section of the server's configuration file:
<pre>
...
<interfaces>
    ...
    <interface name="public"/>
</interfaces>
...
</pre>

Revision as of 17:02, 12 October 2016

Internal


Management Interface

The management interface is declared, and named as such, in the <interfaces> section of the server's configuration file:

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

For more details, see:

WildFly Management Interfaces

Public Interface

The public interface is declared, and named as such, in the <interfaces> section of the server's configuration file:

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