The SSL connection could not be established, see inner exception. The remote certificate is invalid

在centos7环境下,访问https的网页正常,使用curl访问网页也正常。

后台程序使用netcore 3.1开发的程序,访问时,报“The SSL connection could not be established, see inner exception. The remote certificate is invalid according to the validation procedure”这个错误,经查,为证书问题

后来执行,问题解决

 cp /etc/pki/tls/cert.pem /usr/local/ssl/

 在执行前,先检查openssl的路径,并确认路径是否有cert.pem。这台机器的这个文件是一个链接,没关系,直接执行,也是正常成功的。

参考文章:The SSL connection could not be established, see inner exception. 解决办法_明珠玮玉的博客-CSDN博客_the ssl connection

你可能感兴趣的:(LINUX,ssl,https,网络协议)