[web2py] Re: WARNING:Rocket.Errors.Port8000:Listener started when not ready.

2015-10-06 Thread Leonel Câmara
No no you got it wrong my advice was to use 127.0.0.1 you were using 1.0.0.1 by mistake and that's why you were having problems. You should use 127.0.0.1 because that's a special IP that's used as the loopback address and it always points to the machine where you are. -- Resources: - http://we

Re: [web2py] Re: WARNING:Rocket.Errors.Port8000:Listener started when not ready.

2015-10-05 Thread Heather Dawe
Hi Leonel, Many thanks for pointing that out it worked a treat. Just to further my newbie questions - using ip 127.0.0.1 always worked when I previously started the server and, now I have used your advice to use ip 1.0.0.1 to get the server going again, when I stop and start it 127.0.0.1 now works

[web2py] Re: WARNING:Rocket.Errors.Port8000:Listener started when not ready.

2015-10-05 Thread Leonel Câmara
You're using the wrong IP address sudo python web2py.py -a 'password' -i 1.0.0.1 -p 8000 It should be sudo python web2py.py -a 'password' -i 127.0.0.1 -p 8000 I think we should call the ability to catch this kind of mistakes quickly "programmer's eye" or something. Seriously the amount of hou