Monday, November 30, 2015

Web Access WildFly

SI necesitamos tener acceso libre de la red hacia wildfly

By default, you will be able to access Wildfly via web only on your local system, by browsing to:
http://localhost:8090 [or any port that you have previously configured]
If you need access from outside, you must locate the following in standalone.xml:


1
2
3
4
5
6
<interface name="management">
    <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
</interface>
<interface name="public">
    <inet-address value="${jboss.bind.address:127.0.0.1}"/>
</interface>
 
 
And change that to:

1
2
3
4
5
6
<interface name="management">
    <any-address/>
</interface>
<interface name="public">
    <any-address/>
</interface>

No comments:

Post a Comment