我在 ubuntu 18.04 LTS 上运行了 django 应用程序。突然间,我在运行服务器时开始出现以下错误。
$ python manage.py runserver localhost:9000
Performing system checks...
System check identified no issues (0 silenced).
July 16, 2020 - 01:07:25
Django version 3.0.4, using settings 'alphaslate.settings'
Starting development server at http://localhost:9000/
Quit the server with CONTROL-C.
**Error: You don't have permission to access that port.**
在出现此错误之前,我已通过 livepatch 更新到 ubuntu.base。请建议我如何解决此错误或卸载最新的 livepatch。提前致谢。
答案1
您可以使用另一个端口来运行您的 django 开发服务器端口。
例如
python manage.py runserver localhost:18080
答案2
此问题仅出现在特定 git 分支中。我仍然不确定它出了什么问题。截至目前,我创建了新分支,它运行良好。