- 
        1. Re: Access jboss as 7 remotelynickarls Aug 15, 2011 4:18 PM (in response to msteedle)I think it's the inet-address of the public interface in the standalone.xml 
- 
        2. Re: Access jboss as 7 remotelymsteedle Aug 15, 2011 4:28 PM (in response to nickarls)then how do i acces the server after i change that? 
- 
        3. Re: Access jboss as 7 remotelynickarls Aug 15, 2011 4:32 PM (in response to msteedle)The management interface is separate. 
- 
        4. Re: Access jboss as 7 remotelymsteedle Aug 15, 2011 4:36 PM (in response to nickarls)I have two computers. How do I launch the server on the one (What do I set value to as shown below) <interface name="public"> <inet-address value="0.0.0.0"/> </interface> Then how do I access this from the other computer just as if i were going to http://localhost:8080 from the first computer? 
- 
        5. Re: Access jboss as 7 remotelynickarls Aug 15, 2011 4:46 PM (in response to msteedle)use the IP of the computer, I think there are other sub-elements of interfaces that can be used for hostname etc. Can't check right now how I did it on my development server... 
- 
        7. Re: Access jboss as 7 remotelyriverkean Oct 1, 2012 6:56 AM (in response to msteedle)In the standalone.xml file, change the <interface> section by using 0.0.0.0 instead of 127.0.0.1 <interfaces> <interface name="management"> <inet-address value="${jboss.bind.address.management:0.0.0.0}"/> </interface> <interface name="public"> <inet-address value="${jboss.bind.address:0.0.0.0}"/> </interface> </interfaces> 
 
     
    