By cpeters5
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!
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:
- netstat -plant | grep 8080
Hope that this helps! Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.