尽管端口处于“LISTEN”状态,但Django runserver仍未对浏览器做出响应

时间:2018-05-30 22:04:07

标签: python django port listen

我偶然发现了这个问题,我不知道如何解决。当我运行python manage.py runserver时,我得到了这个:

enter image description here

我在浏览器上打开http://127.0.0.1:8000/(在使用CONTROL-C退出服务器之前),显示以下结果:

enter image description here

我尝试了StackOverflow上提出的所有解决方案来解决类似的问题。

我尝试运行python manage.py runserver 0.0.0.0:8000,但它没有改变任何东西。

我检查了我的端口正在使用sudo nmap -sT -O localhost监听,结果是:

enter image description here

但是在运行netstat -anv时,我明白了:

enter image description here

我甚至尝试使用sudo lsof -t -i tcp:80然后使用kill -9 xxxx(xxx是pid)来杀死它。

我的所有代理都已停用(见下文),所以我不知道会发生什么。

enter image description here

过去两天我一直试图解决这个问题。我是Django的初学者,想知道发生了什么。我一直在阅读网站上的所有主题,但没有找到适合我的解决方案。

上次我在这个项目上工作时,它工作得很好,几天后我重新打开它时,浏览器停止了工作。

我期待着你的回答。谢谢!!

0 个答案:

没有答案