issue:PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target; nested exception is java.lang.RuntimeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
最近项目上测试环境的elasticsearch证书过期了。我重新生成了新的self-signed certificate。发现有springboot微服务的接口报了上面提到error。这个接口是接连elasticsearch,并且查询数据展示在页面上。
我马上意识到了是因为我更新了新的cert。还没有import rootCA.crt到jdk的cacerts keystore里面。
用下面的命令:

sudo keytool -import -alias newCert -file  /folder/rootCA.crt -keystore  /usr/lib/jvm/zulu11-ca/lib/security/cacerts

folder/rootCA.crt 是证书的路径
/usr/lib/jvm/zulu11-ca/lib/security/cacerts 是jdk keystore的路径,根据自己服务器的目录更改。

然后再重启微服务。问题得到解决。

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐