报错信息如下:
日志中的报错信息:
Anerror occurred while using SSL configuration for endpoint 0.0.0.0:444
解决方法:
1、在powershell 运行netsh http show sslcert,找到IP:port : 127.0.0.1:443的证书内容,记录下证书的hash 和id
2、 运行netsh http delete sslcert ipport=0.0.0.0:444,删除这个ipport的证书内容
3、 netsh http add sslcertipport=0.0.0.0:444 certhash=123123123123123appid="{123123123123-1231231235}"
将IP:port : 127.0.0.1:443的证书内容添加到ipport=0.0.0.0:444中
问题解决。