我有一个运行wildfly的VirtualBox debian VM。主机是Windows 8.1。我已转发端口8080和9990。
我编辑了standalone.xml以包含:
<interfaces>
<interface name="management">
<any-address/>
</interface>
<interface name="public">
<any-address/>
</interface>
<interface name="unsecure">
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>
正如所料,我可以通过http://localhost:8080/webservice
上的主机和管理控制台访问http://localhost:9990/
上的网络服务。
到目前为止一切顺利,但是当我使用Windows 7在另一台PC上运行相同的虚拟机映像时,我只能访问Web服务而不能访问管理控制台。
可能导致此问题的原因是什么?