• My Errors
  • Login
  • Search
Search again

Error #69805

Error: (48, 'Address already in use')

Appear when starting a Django server.

User's solution

This works!
-1 Vote Up

Thry starting Django with another port

./manage.py runserver 8001

Apr 12, 2008

Comments

in os x/linux do sudo ps -a # to see the running processes kill -9 123 # replace 123 with pid of running runserver process

user6533 Aug 01, 2009