Pydev 中的 Django 会产生多个进程?

发布于 2024-10-31 01:51:59 字数 152 浏览 1 评论 0原文

我在 Eclipse 中的 PyDev 中设置了我的项目。每当我调试项目时,一切都进展顺利,但是一旦我尝试重新启动 Django 服务器,它就会生成一个额外的 runserver 进程,阻塞我用于服务器的端口 (8000)。有没有解决方法可以确保它确实杀死服务器?

I have my project setup in PyDev in Eclipse. Whenever I debug my project, things go great, but once I try to restart the Django server, it spawns an additional runserver process, blocking up the port I'm using for the server (8000). Is there a workaround to make sure it really kills the server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿透光 2024-11-07 01:51:59

每次对任何 Python 代码进行更改时,Django 都会重新加载服务器(运行服务器的另一个实例并杀死旧的实例)。从 Pydev 启动时似乎没有正确处理。您可以通过将 --noreload 参数添加到服务器启动命令来停用此功能。

更多信息: <代码>--noreloadpydev/django (查找下面的注释作为 Django 运行/调试

Django reloads the server each time changes are made to any Python code (running another instance of the server and killing the old one). It seems that it's not handled properly when launched from Pydev. You can deactivate this by adding the --noreload argument to the server starting command.

More information: --noreload, pydev/django (look for the remark below Run/Debug as Django)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文