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

Sorry You must be a logged in, registered user to answer a question.

Answers

Hmm, interesting. Mind telling me the version of VirtualBox and Vagrant you're using?

Im using vagrant 1.1.4 and virtualbox 4.2.10 on x64 ubuntu. I think it may have been from a process using port 8888 on my host machine and vagrant was nice enough to forward the port a second time to 2201. After I restarted my machine today and reran vagrant the port forwarded correctly like in the tutorial.
Ryan Maund on