JAVA 解决 unable to find valid certification path to requested target 证书认证
程序员文章站
2022-06-05 14:22:14
...
下载证书
点击电子浏览器地址栏中的锁,然后点击证书。在弹出的页面中拖动证书到桌面。如实在不会请自行百度,导出的文件后缀为 *.cer
导入证书
切换到你的 jre
安装目录的 /lib/security/
目录下,然后执行命令
keytool -import -alias 别名(访问网站的网址) -keystore cacerts -file C://abc.cer
-alias
指定别名(推荐和证书同名)
-keystore
指定存储文件(此处固定)
-file
指定证书文件全路径(证书文件所在的目录)
注意:当切换到 cacerts
文件所在的目录时,才可指定 -keystore cacerts
, 否则应该指定全路径。
此时命令行会提示你输入 cacerts
证书库的密码,敲入 changeit
即可,这是 java
中 cacerts
证书库的默认密码,当然也可自行修改。
输入密码后会提示你是否信任此证书,输入 Y
。导入完成。
更新证书
更新证书时,请先删除证书,然后导入新的证书
keytool -list -keystore cacerts
keytool -delete -alias akazam_email -keystore cacerts
keytool -import -alias akazam_email -file akazam_email.cer -keystore cacerts -trustcacerts
其他命令
keytool -list -keystore cacerts -alias 别名 // 查看证书
上一篇: SSH整合异常:Unable to instantiate Action
下一篇: Unable to add the resource at [*/*/*.jar] to the cache because there
推荐阅读
-
unable to find valid certification path to requested target 的简单解决办法
-
JAVA 解决 unable to find valid certification path to requested target 证书认证
-
resttemplate 调用https 出错 unable to find valid certification path to requested target
-
Android Studio出现:Cause: unable to find valid certification path to requested target解决办法
-
解决安全证书问题unable to find valid certification path to requested target 解决记录
-
unable to find valid certification path to requested target
-
解决unable to find valid certification path to requested target
-
IDEA unable to find valid certification path to requested target。PKIX path building failed
-
解决unable to find valid certification path to requested target
-
unable to find valid certification path to requested target