您的位置:首页 > 其它

JBOSS7 学习 <一> 只能127.0.0.1 访问控制台

2015-06-02 00:00 381 查看
摘要: JBOSS7 访问控制台 127.0.0.1

jboss 原配置
jboss-as-7.1.1.Final/standalone/configuration/standalone.xml

<interfaces>
<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>
<!-- TODO - only show this if the jacorb subsystem is added  -->
<interface name="unsecure">
<!--
~  Used for IIOP sockets in the standard configuration.
~                  To secure JacORB you need to setup SSL
-->
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>

修改为

<interfaces>
<interface name="management">
<any-ipv4-address/>
</interface>
<interface name="public">
<any-ipv4-address/>
</interface>
<!-- TODO - only show this if the jacorb subsystem is added  -->
<interface name="unsecure">
<!--
~  Used for IIOP sockets in the standard configuration.
~                  To secure JacORB you need to setup SSL
-->
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>


问题解决

添加JBOSS7.1.1 下载地址:
http://download.jboss.org/jbossas/7.1/jboss-as-7.1.1.Final/jboss-as-7.1.1.Final.tar.gz
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息