You can set a different IP address by changing the open interface in standalone.xml. It should look like this:
<interface name="public"> <inet-address value="${jboss.bind.address:127.0.0.2}"/> </interface>
So, the server now listens only for the specified ip address (after restart). If you want to allow all available network interfaces, you should instead install 0.0.0.0 (be careful with this).
source share