System.InvalidOperationException:“Unable to configure HTTPS endpoint.异常处理
2024-10-13
22
.NET Core网站按F5运行时,在Program.cs里运行到app.Run()的时候报错:
System.InvalidOperationException:“Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found or is out of date.
To generate a developer certificate run 'dotnet dev-certs https'. To trust the certificate (Windows and macOS only) run 'dotnet dev-certs https --trust'.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.”
解决方法是在CMD命令提示符里输入以下命令生成开发人员证书:
dotnet dev-certs https
这样网站就可以运行了,但是会提示证书不安全。
继续运行以下命令信任证书。
dotnet dev certs https--trust
这样就不会提示证书不安全了。
清理开发人员证书的命令是:
dotnet dev-certs https --clean
赞一波!
相关文章
- IIS配置HTTP 301重定向到HTTPS实测有效
- PHP,JavaScript 获取当前域名、判断网址协议是否为 HTTPS
- 为IIS网站配置证书实现https访问免费教程
- Linux为网站配置SSL证书实现https访问
- 个人网站如何配置https
- 本地iis自签证书使用https
- Tomcat如何添加HTTPS证书
- HTTPS加密传输过程
- 轻松搞定Tomcat上的HTTPS配置与证书申请全流程
- Nginx配置ssl证书支持https访问
- .NET InvalidOperationException: Cannot consume scoped service from singleton
- HTTP vs HTTPS:区别与应用
- X1获取用户头像HTTPS方法
- 整站访问网址设置为https的解决方法
文章评论
评论问答