How to enable remote access to JBoss AS 7

On October 21, 2011, in JBoss AS 7, by lucasterdev
Set the following in JBOSS_AS_7_HOME/standalone/configuration/standalone.xml
<interfaces>
    <interface name="management">
        <inet-address value="127.0.0.1"/>
    </interface>
    <interface name="public">
        <any-address/>
    </interface>
</interfaces>
 

Leave a Reply