Re: Port in use Error

2009-04-11 Thread rajeev
Hi, I'm in the exact same situation " Validating models... 0 errors found Django version 1.0.2 final, using settings 'mylu.settings' Development server is running at http://127.0.0.1:8000/ Quit the server with CONTROL-C. Error: That port is already in use. " but the solution above doesn't solv

Re: Port in use Error

2009-03-26 Thread pcastellazzi
The python uuid library use libuuid from e2fsprogs (at least in ubuntu). This particular uuid library spanws a daemon called uuidd to help with concurrent uuid generation. As far as i know the only way to disable this behaviour is to compile libuuid with --disable-uuidd option. When you run ./man

Re: Port in use Error

2009-03-17 Thread TP
gordyt Thanks this does help, I managed to overcome this problem yesterday, but was still slightly confused as to why I had the error in the first place, this helps me understand! Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: Port in use Error

2009-03-17 Thread gordyt
TP I don't know if this applies to your situation or not, but... On an app I'm currently writing I'm using UUID primary keys for some of the models. When creating a new instance of one of those models, say through the admin interface, the development server will start up an instance of a process

Re: Port in use Error

2009-03-16 Thread Daniel Roseman
On Mar 16, 5:16 pm, TP wrote: > Unfortunately the website doesnt work, just get  a blank web page. > > Im working from a University computer so im guessing it may be due to > that problem as I have no other programs running apart from Firefox > So use a different port number - eg ./manage.py run

Re: Port in use Error

2009-03-16 Thread TP
Unfortunately the website doesnt work, just get a blank web page. Im working from a University computer so im guessing it may be due to that problem as I have no other programs running apart from Firefox On Mar 16, 5:13 pm, Dougal Matthews wrote: > It means another program is using the port yo

Re: Port in use Error

2009-03-16 Thread Dougal Matthews
It means another program is using the port you are trying to use. Do you have another server running? or skype by any chance? If you can still view the website in the browser, its not a problem. If you can't you should use another port or close the program using the same port. Dougal --- Dougal M

Port in use Error

2009-03-16 Thread TP
After creating a new project, when running manage.py i get the following: Validating models... 0 errors found Django version 1.0.2 final, using settings 'mylu.settings' Development server is running at http://127.0.0.1:8000/ Quit the server with CONTROL-C. Error: That port is already in use.