返回顶部
首页 > 资讯 > 服务器 >unable to find valid certification path to requested target
  • 835
分享到

unable to find valid certification path to requested target

服务器sslhttps 2023-08-31 06:08:21 835人浏览 薄情痞子
摘要

javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building f

javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

问题产生:

本地与测试环境下使用 apache的HttpClient访问第三方https域名下的接口可以正常请求,但上线到正式环境后进行请求时日志报错。

基本原因:

jdk证书库里找不到该https域名的公钥证书,被jdk拒绝访问。

解决方法

如上所述,要解决这个问题的方法就是:
1、相信所有外来证书;
2、在jdk证书库里添加该域名的公钥证书。
以下对第二种方法进行相应陈述:
1、获取 HTTPS 域名的公钥证书,可以通过浏览器导出并命名为”ca.cer“具体步骤如下。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
2、上传证书到服务器上,记住上传的路径,最好是/root目录下。
3、进入到jdk目录下的jre\lib\security这个目录然后执行以下语句

keytool -import -alias cacerts -keystore cacerts -file /root/CA.cer

输入密码 : changeit
最后确定: yes
该问题就解决了

来源地址:https://blog.csdn.net/qq_42451281/article/details/127125528

--结束END--

本文标题: unable to find valid certification path to requested target

本文链接: https://lsjlt.com/news/384346.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作