Report this

What is the reason for this report?

This site cant be reached. The site took too long to respond

Posted on June 25, 2020

I created a django project following instruction in the tutorial. After initial migration and run python manage.py runserver <myip>:8000, I couldn’t access my site. The error message says it take too long to respond. How do I resolve this?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi there @cpeters5,

I could suggest a couple of things:

  • Make sure that port 8080 is open for incoming TCP connections via your firewall

  • Make sure that your application is binding to 0.0.0.0:8080 rather than 127.0.0.1:8080 so that it could be accessed via the outside world.

To check that run the following command:

  1. netstat -plant | grep 8080

Hope that this helps! Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.