2014-11-16 116 views
0

我有一個運行着wildfly的VirtualBox debian VM。主機是Windows 8.1。我已經轉發端口8080和9990。無法使用Virtualbox連接到管理控制檯

我已經編輯了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從主機訪問web服務(S)以及管理員控制檯http://localhost:9990/

到目前爲止這麼好,但是當我在使用Windows 7的另一臺PC上運行相同的虛擬機映像時,我只能訪問web服務,而不能訪問管理控制檯。

什麼可能導致此問題?

回答

1

是否沒有另一個(可能是Windows)服務在該端口上運行?

嘗試從命令行運行netstat -a -b找出。

TCPview是您可以使用的另一個很棒的工具。

+0

輝煌,就是這樣 - 我永遠不會想到這一點。 – assylias

相關問題