Vagrant port forwarding errors
Just started these awesome tutorials and im glad to get some hands on use with vagrant and virtualenv! For those who may have trouble with seeing the "it worked" page look at what it forwards in the terminal when you
vagrant up
I followed the tutorial to the tee but it seems that the forwarding from vm to host system gets funky. I would do the normal
python manage.py runserver 0.0.0.0:8000 and then visit 127.0.0.1:8888 on my host machine and would get a no connection or connection reset error. However look in terminal when you rerun vagrant up and you shoud see some ports get resolved somewhere.
I saw Fixed port collision for 8000 => 8888. Now on port 2201
after rerunning runserver like the tutorial says. visit on the host system 127.0.0.1:2201 (instead of 127.0.01:8888)
or whatever port it specifies for you and the "it worked" page should load normaly
~Ryan
Answers
Thank you! I was seeing the same thing..
Hmm, interesting. Mind telling me the version of VirtualBox and Vagrant you're using?