我正在使用./standalone.sh在独立模式下运行JBoss AS7。这会将JBOSS绑定到仅本地主机。有没有办法将它绑定到所有主机,我的意思是0.0.0.0。
较早的版本具有-b选项来传递0.0.0.0,我在这里找不到要使用的任何选项。
编辑 standalone / configuration / standalone.xml 并插入标记 any-address 而不是绑定到127.0.0.1 的 inet- address-示例:
<interfaces> <interface name="management"> <inet-address value="127.0.0.1"/> </interface> <interface name="public"> <any-address/> </interface> </interfaces>
在公共接口,我已经改变了原来的 INET地址 与 任何地址 。重新启动后,您将能够通过网络浏览JBoss端口8080。