AuthenticationException: The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot

AuthenticationException: The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot

回答1

Please check below points:

  1. Installing the .NET Core SDK installs the ASP.NET Core HTTPS development certificate to the local user certificate store as part of the first-run experience, but it is not trusted. To trust the certificate, perform the one-time step to run the dotnet dev-certs tool.
  2. Check the certificates in the certificate store.Find localhost certificate with the ASP.NET Core HTTPS development certificate both under Current User > Personal > Certificates and Current User > Trusted root certification authorities > Certificates
  3. Try to remove all found certificates by checking carefully from both Personal and Trusted root certification authorities.

Note: Do not remove the IIS Express localhost certificate.

Try to run the following commands in .NET CLI and try again

dotnet dev-certs https --clean
dotnet dev-certs https --trust

Note: Untrusted certificates should only be used during app development. Production apps should always use valid certificates.

References:

  1. Trust the ASP.NET Core HTTPS development certificate on Windows and macOS
  2. Enforce HTTPS in ASP.NET Core | Microsoft Docs

 

Windows - certificate not trusted

  • Check the certificates in the certificate store. There should be a localhost certificate with the ASP.NET Core HTTPS development certificate friendly name both under Current User > Personal > Certificates and Current User > Trusted root certification authorities > Certificates
  • Remove all the found certificates from both Personal and Trusted root certification authorities. Do not remove the IIS Express localhost certificate.
  • Run the following commands:
dotnet dev-certs https --clean
dotnet dev-certs https --trust

Close any browser instances open. Open a new browser window to app.

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(723)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2021-12-07 cookie groups
2021-12-07 Client-Side Cookie Management optanon-category-C0004
2021-12-07 OneTrust Cookie Auto-Blocking™
2021-12-07 The Auto Block, blocks my pictures on my website OneTrust
2021-12-07 System.Xml.XmlException: There is no Unicode byte order mark. Cannot switch to Unicode.
2017-12-07 kentico中自定义错误页面
2017-12-07 Troubleshooting Failed Requests Using Tracing in IIS 8.5
点击右上角即可分享
微信分享提示