Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
时间: 2023-07-08 19:34:45 浏览: 149
Tess, if broken it is fix it you should
这个错误通常是由于 SSL 证书问题引起的。它表示 SSL 证书不受信任或者证书链中缺少根证书。您可以尝试添加缺失的证书或更新证书。如果您使用的是 Java,可以使用 keytool 工具来管理证书。您可以使用以下命令来导入证书:
```
keytool -import -alias your_alias_name -keystore your_keystore_filename -file path_to_certificate
```
请将 your_alias_name 替换为您选择的别名名称,your_keystore_filename 替换为您的密钥库文件名,path_to_certificate 替换为您要导入的证书的路径。
阅读全文