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