Access Tomcat localhost:8080 of guest VirtualBox VM from Host OS

后端 未结 4 948
夕颜
夕颜 2021-02-20 06:26

I have an XP laptop on which I am running an Ubuntu distro inside VirtualBox which is running a website via Tomcat. When I am in the VM I can access the site with localhost:8080

相关标签:
4条回答
  • 2021-02-20 07:10

    Get the IP Address of your guest OS and access it via that.

    0 讨论(0)
  • 2021-02-20 07:14

    Type the following command on VM and then try.

    sudo iptables -F

    0 讨论(0)
  • 2021-02-20 07:15

    The following helped me after a new VM and tomcat installation.

    Get the IP address of the Guest OS and the port number on which tomcat was started. Then you can access it via:

    IP:Port/

    In case you are not able to access it still or if you get no response, try

    sudo iptables -F

    This would flush the tables and would reflect the new mapping. You would need to do this only once though.

    0 讨论(0)
  • 2021-02-20 07:16

    Setup your VM to run a host-only network, then reboot or restart networking to update DHCP. The IP address on the guest will now be accessible from the host.

    You can also use bridged network mode, but that won't work when the host is disconnected from the network.

    0 讨论(0)
提交回复
热议问题