JBoss WildFly: Starts but can’t connect?

By default jboss/wildfly binding to localhost, if you want change this, you can execute: standalone.sh -b 0.0.0.0 listen on all IP addresses of the machine (if multihomed) Another alternative is configure in standalone.xml the interfaces section. Change: <interfaces> <interface name=”management”> <inet-address value=”127.0.0.1″/> </interface> <interface name=”public”> <inet-address value=”127.0.0.1″/> </interface> </interfaces> to: <interfaces> <interface name=”management”> <!– Use … Read more

How to change default port 8080 in WildFly

In your standalone.xml file, look for this element: <socket-binding-group name=”standard-sockets” default-interface=”public” port-offset=”${jboss.socket.binding.port-offset:0}”> The port-offset attribute lets you modify all the ports wildfly uses, by adding the number you specify. For example, the default value is 0, which means that http port will be 8080, remoting 4447, etc. If you use ${jboss.socket.binding.port-offset:100}, http port will be … Read more