I am trying to connect to a Django development server, running in OS X localhost:8000, from VMWare running Windows.
I've tried various combinations of settings, but none of them seem to work:
None of these seem to work. I have an Apache server also running locally, and am able to connect to that, so it's not an issue with the network. Is there any way to connect to localhost:8000 from within VMWare?
Thanks to randrumree for the answer below -- this is essentially the same solution.
ifconfig
, or in System
Preferences > Network. Let's say it's 192.168.1.2
. python manage.py runserver 192.168.1.2:8000
http://192.168.1.2:8000
Try:
python manage.py runserver 0.0.0.0:8000
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With