How to fix django runserver ‘port already in use’ error

This usually happens if you  $ python manage.py runserver 8000 and then don’t stop the server by hitting Cntrl+C but hit something like Cntrl+Z instead. To stop the server on port 8000 so that you can run another instance again you can do the following.. Run the below command to list all your processes with… Read More How to fix django runserver ‘port already in use’ error