Daniela
Daniela

Reputation: 366

parallels 9 - mac 10.9 - windows 8.1 rails server running on mac, how to localhost:3000 from internet explorer?

Parallels 9 with windows 8.1 (and more), Mac 10.9.5

rails 4.2 ruby 2.0.0, development app running on localhost:3000

I want to access app from internet explorer running on windows 8.1 in parallels. I have read every post on the net and submitted a ticket to parallels: no luck.

bridged network (default adapter), tried windows firewall inbound rules, opening port 3000 (parallels recommendation, no luck)

ifconfig on mac 192.168.0.1, ipconfig on windows depending on network

anybody able to tell me how to do this? Thanks!

Upvotes: 1

Views: 385

Answers (1)

Maxim
Maxim

Reputation: 9981

  1. Disable windows firewall (no body know how to configure it :)
  2. Run rails application with binding to 0.0.0.0 (rails s -b 0.0.0.0)
  3. Are you sure exactly that your IP is .1? Check it in Preferences/Network in IP Address label.
  4. Check that windows ping your host (ping 192.168.0.1).

Try to open 192.168.0.1:3000 in IE.

Upvotes: 3

Related Questions