JBOSS 6-4 安装了 EAP - 无法访问管理控制台

JBOSS 6-4 EAP installed - cannot access Admin Console

我安装了 jboss EAP 6.4。

我可以访问欢迎页面,但无法从远程 PC 访问管理控制台。

到目前为止我尝试过的:

Jboss开始w/o错误警告。

我可以尝试什么?

我的问题是网络路由问题。

无论如何,如果有人遇到问题,请在这里留下一些有用的技巧来解决问题。

首先,启动属性将覆盖独立-full.xml属性。

./standalone.sh -c standalone-full.xml -b 0.0.0.0 Djboss.as.management.blocking.timeout=5000 

将允许您启动 JBOSS 并向所有 ip 打开 public 界面。

同样的事情可以通过独立实现-full.xml

在界面部分修改:

<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: 0.0.0.0}"/>
</interface>

并在没有 -b 0.0.0.0.

的情况下开始 jboss

Just keep in mind that if the server and PC's that need to remote are on a closed network you don't need to worry about the security.