wildfly 如何设置外网访问

Posted 小山药

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wildfly 如何设置外网访问相关的知识,希望对你有一定的参考价值。

wildfly的默认配置是不支持外网访问的,

要想实现外网访问需要修改standalone.xml配置文件。

配置文件所在路径:wildfly/standalone/configuration/standalone.xml

看到是要访问public(8080端口的)和management的interface,将interface中的对应绑定地址127.0.0.1改为0.0.0.0即可。

修改前:

<interfaces>

<interface name="management">
<inet-address value="${jboss.bind.address.management:127.0.0.0}"/>
</interface>
<interface name="public">
<inet-address value="${jboss.bind.address:127.0.0.0}"/>
</interface>
<interface name="unsecure">
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>

修改后:
 

<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>
<interface name="unsecure">
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>

以上是关于wildfly 如何设置外网访问的主要内容,如果未能解决你的问题,请参考以下文章

phpmyadmin如何设置域名让外网访问

TPLINK路由请问如何设置能让外网访问SVN服务器?

vmware 怎么可以让外网访问到

如何设置LINUX内网服务器使外网可以访问

如何从外网访问dmz主机?

小米路由器的外网设置