Question

Broken Pipe from (IP add)

I have set-up Django project which works just fine on my local. Then I have set a droplet on digitalocean and once I ran for testing the python manage runserver 0.0.0.0:8000 it ran fine if i try to visit the browser with my IP:8000 it dosen’t work and the termenal print

Broken Pipe from (IP)…


Submit an answer
Answer a question...

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!

Sign In or Sign Up to Answer

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.

the issue is resolved, it was to re-deploy the server thank you all for your input

Bobby Iliev
Site Moderator
Site Moderator badge
May 17, 2022

Hello,

In addition to what has been mentioned, I would recommend setting your Django log level to DEBUG. That way you should be able to see more information on what could be causing the problem rather than the broken pipe message.

Feel free to share the output of the log with DEBUG enabled here if you wish.

Best,

Bobby

Want to learn more? Join the DigitalOcean Community!

Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.

Hi @bizmodule,

Have you check out the log server? It’s possible that you are running a development server in production environment? If that is so, now raises a socket exception telling the program that the client ‘Broke the socket pipe’.

Look forward to your feedback,

Sergio Turpín