본문 바로가기
Programming/.NET

[.NET] .NET 인증서 net::ERR_CERT_AUTHORITY_INVALID 에러 해결 방법

by 째스터 2024. 7. 29.
728x90

오늘 갑자기 브라우저에서 net::ERR_CERT_AUTHORITY_INVALID가 발생했다.
certmgr.msc에서 개인용 localhost의 인증서를 조회해 보니 딱 오늘이 만료일이었다.

다음과 같이 모든 ASP.NET 인증서를 제거하고 새로운 인증서를 생성한다.

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

그런데 나의 경우는 이 이후에도 인증서 에러가 계속되고 있었다.
혹시나 하고 visual studio 2022를 재시작하니 그제서야 해결되었다.

다음과 같이 오늘 생성된 인증서가 등록된 것을 확인할 수 있었다.

참고: https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-dev-certs

 

dotnet dev-certs command - .NET CLI

The dotnet dev-certs command generates a self-signed certificate to enable HTTPS use in development.

learn.microsoft.com

 

728x90

댓글