Home > Blockchain >  Django refuses to connect
Django refuses to connect

Time:01-16

I created my Django website, whenever I try to go on the website, it says 127.0.0.1 is not responding. I tried troubleshooting it and it says 127.0.0.1 is refusing connection. everywhere it says that there's a firewall issue how do I fix

CodePudding user response:

Just to be sure because you didn't mention it, did you launch the server with the following command?

python manage.py runserver

CodePudding user response:

use this command in cmd:

python manage.py runserver

after that, you will see the IP and the port as shown in the image below

image to describe the answer

  • Related