Search code examples
wildfly-8

Configuring WildFly to listen any address


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?


Solution

  • 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>