Binding IP Address in JBoss
For LINUX
The user must modify the standalone.xml
file with IP address for the management interface.
standalone.xml
file is available at <JBOSS_HOME>/standalone/configuration/standalone.xml./standalone/configuration/standalone.xml.
Modify the following sections:
<wsdl-host>${jboss.bind.address:<IP Address>}</wsdl-host>
For example:
<wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host>
<interfaces> <interface name="management"> <inet-address value="${jboss.bind.address.management:<IP_Address>}"/> </interface> <interface name="public"> <inet-address value="${jboss.bind.address:<IP_Address>}"/> </interface> </interfaces>
For example:
<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> </interfaces>
Note: The user must modify the localhost with IP address in the Admin Console URL (http://server:9990/ ), wherever localhost is being referred.