RE: Poll tutorial: running the command 'python manage.py

2013-05-26 Thread Babatunde Akinyanmi
e output, you will find the PID of the process (which will look like "2256/python" where 2256 will be the PID) then you can run: sudo kill 2256 Sent from my Windows Phone From: Branko Majic Sent: 5/25/2013 8:46 PM To: django-users@googlegroups.com Subject: Re: Poll tutorial: running the

Re: Poll tutorial: running the command 'python manage.py runserver' produces an error

2013-05-25 Thread Branko Majic
On Sat, 25 May 2013 12:40:08 -0700 (PDT) Kokas <79papa...@gmail.com> wrote: > Hello > > When I run the initially created project using the command 'python > manage.py runserver' gives me > Error: [Errno 10013] > > When I run this command though 'python manage.py runserver 8001', then I > can

Re: Poll tutorial: running the command 'python manage.py runserver' produces an error

2013-05-25 Thread Rishi Mukherjee
The 'python manage.py runserver' by default runs the server on port 8000. But, your 8000 port must be getting used by some other application. Thus, 8001 works, which was free. The four digits are ports and the localhost is your IP address which is equal to 127.0.0.1. You may try this link to get th

Re: Poll tutorial: running the command 'python manage.py runserver' produces an error

2013-05-25 Thread Tim Chase
On 2013-05-25 12:40, Kokas wrote: > Hello > > When I run the initially created project using the command 'python > manage.py runserver' gives me > Error: [Errno 10013] A from-the-hip guess is that you're running on a machine (such as Linux/BSD/Mac) where ports <1024 are considered privileged, a