Error: You don't have permission to access that port.
时间: 2023-12-08 16:37:13 浏览: 352
apache You don't have permission to access /test.php on this server解决方法
5星 · 资源好评率100%
当出现“Error: You don't have permission to access that port.”错误时,通常是因为你尝试在一个需要管理员权限的端口上运行服务。在Linux或MacOS上,可以使用sudo命令来获取管理员权限。例如,如果你想在80端口上运行服务,可以使用以下命令:
```shell
sudo python manage.py runserver 0.0.0.0:80
```
这将提示你输入管理员密码,输入后服务将以管理员权限运行。如果你在Windows上运行服务,则需要以管理员身份运行命令提示符或PowerShell窗口。你可以右键单击命令提示符或PowerShell图标,然后选择“以管理员身份运行”选项。如果你仍然无法访问端口,请确保防火墙已正确配置以允许流量通过该端口。
阅读全文