Earlier when I executed,
python3 manage.py runserver
It used to start the server at my localhost http://127.0.0.1:8000/
but somehow it isnt doing so now, when I type it in now and press enter, nothing happens and the cursor just goes to the next prompt.
However if I type in,
python3 manage.py runserver 127.0.0.1:8000
It works correctly and starts the server.
What could be the issue? Is doing ctrl+C not stopping the already running server? How do I find out if I have any other servers still running in the background?