I'm running JBoss AS7 in a standalone mode using ./standalone.sh. This binds JBOSS to only localhost. Is there a way to bind it to all the hosts, i mean 0.0.0.0 The older versions had -b option to pass 0.0.0.0, i cant find any options to use over here.

link|improve this question

Can you try editing standalone.xml and setting inet-address to 0.0.0.0? See community.jboss.org/wiki/… . – Dave Jul 28 '11 at 3:37
Tried that, but no luck – Chander Shivdasani Jul 29 '11 at 22:27
feedback

4 Answers

up vote 15 down vote accepted

Edit standalone/configuration/standalone.xml and insert the tag any-address instead of inet-address bound to 127.0.0.1 - Example:

<interfaces>
    <interface name="management">
        <inet-address value="127.0.0.1"/>
    </interface>
    <interface name="public">
        <any-address/>
    </interface>
</interfaces>

In the public interface, I've changed the original inet-address with any-address. After restarting, you'll be able to browse JBoss port 8080 over the network.

link|improve this answer
feedback

We just added support for -b in 7.0.2.

link|improve this answer
feedback

Thanks for the tip above, FYI I discover that using any-address might lead to

10:31:22,605 ERROR [org.apache.catalina.core.StandardService] (MSC service thread 1-2) Connector.start: LifecycleException: service.getName(): "jboss.web"; Protocol handler start failed: java.net.SocketException: Protocol family not supported at org.apache.catalina.connector.Connector.start(Connector.java:1058)

cf. http://community.jboss.org/thread/168789?tstart=120

You might workaround it by replacing it by

that gives you :

  <interfaces>
        <interface name="management">
            <inet-address value="127.0.0.1"/>
        </interface>
        <interface name="public">
           <any-ipv4-address/>
        </interface>
    </interfaces>
link|improve this answer
works like a charm .. – LooyeD Dec 2 '11 at 8:10
feedback

You can also do the following:

<interfaces>
    <interface name="management">
        <inet-address value="127.0.0.1"/>
    </interface>
    <interface name="public">
        <inet-address value="0.0.0.0"/>
    </interface>
</interfaces>

or if you want to bind to a particular address, replace 0.0.0.0 with the ip.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.