0

I have windows 7 installed and I am running VMware player with Ubuntu as the guest OS. I installed Etherpad which runs on http://localhost:9000 in the VMware player. In the VMware player itself I can connect to the site with localhost:9000. If I look up the IP of the VMware player, I get some IP address. The problem is that I neither can connect from the windows system nor directly from the VMware with the IP address.

vmware: localhost:9000 -> works vmware & windows: xxx.xxx.xxx.xxx:9000 -> does not work

I can't find a solution how to connect. It's in bridged mode.

Ben Pilbrow
  • 12,041
  • 5
  • 36
  • 57
ave4496
  • 101
  • 4

2 Answers2

0

The localhost 127.0.0.1 address really means "localhost in the VM" in this case. You can not access this address from outside the VM.

The service you want to connect to must listen on "0.0.0.0", to be connectable from Host side. Then you can use the IP address of the VM.

Turbo J
  • 503
  • 2
  • 8
0

The solution to my problem had nothing to do with the VM. I had to add the IP address of the VM to the topdomains entry in the etherpad config file.

ave4496
  • 101
  • 4