We have done this in older version by using -b 0.0.0.0. But when we set this address in WildFly it fails. What is the alternative method to do this in WildFly-8.2?
Asked
Active
Viewed 8,005 times
1 Answers
15
Change your configuration file in the following way.
<interface name="public">
<inet-address value="${jboss.bind.address:127.0.0.1}"/>
</interface>
To
<interface name="public">
<any-address/>
</interface>

happy
- 2,550
- 17
- 64
- 109
-
I am using domain mode of wildfly-8.2. I updated host.xml file with
and started server but unable to access with ip address of my system. It is still available on localhost. Is there nay way to troubleshot this? – Valsaraj Viswanathan Jul 30 '15 at 12:54