localhost:5001 拒绝与 VS Code 连接 OSX

localhost:5001 refusing connection with VS Code for OSX

我目前正在尝试 运行 在 OSX 上使用已解释的 VS Code here 测试应用程序 ASP.NET。在 运行ning dnx: kestrel 并导航到 localhost:5001 之后,我得到一个连接被拒绝的消息。

可能导致问题的原因是什么?

原来是 localhost:5000。如果有人正在学习该教程,请记住这一点。

默认情况下,它应该监听两个端口

如果您看到 Connection Refused,这可能意味着您的机器不信任所使用的 HTTPS 开发证书。

您可能需要运行

dotnet dev-certs https --trust

为了信任 HTTPS 证书。

更多详细信息和平台特定信息可在此处获得:

https://docs.microsoft.com/en-us/aspnet/core/security/enforcing-ssl?view=aspnetcore-2.2&tabs=visual-studio#trust-the-aspnet-core-https-development-certificate-on-windows-and-macos