在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。这台机器的这个文件是一个链接,没关系,直接执行,也是正常成功的。
在CentOS7系统中,一个使用netcore3.1开发的后台程序遇到SSL连接失败的问题,报错表示远程证书无效。通过复制/etc/pki/tls/cert.pem到openssl路径下解决了问题。确保路径正确,即使cert.pem是链接也可正常执行。
4861

被折叠的 条评论
为什么被折叠?



