多证书导入问题

发布于 2024-11-02 14:51:20 字数 893 浏览 1 评论 0原文

我的应用程序需要与多个安全服务器通信。

我正在使用 keytool 导入证书。

证书导入步骤:

keytool -import -keystore aaa.jks -file aaa.co.uk.cer

keytool -import -keystore bbb.jks -file bbb.co.uk.cer

对于一个证书可以正常工作,但一旦我导入第二个证书,前一个证书就会停止工作。

错误:

    Exception:javax.naming.CommunicationException: 
simple bind failed: aaa.co.uk:636 
[Root exception is 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

我也尝试了以下步骤,但仍然失败:

keytool -import -keystore aaa.jks -alias ms -file aaa.co.uk.cer

keytool -import -alias ms -file bbb.co.uk.cer

我认为我应该将证书附加到一个密钥库中,但不知道该怎么做。

知道怎么做还是我错过了什么?

环境:Java 1.6
应用服务器:Glassfish

My application needs to talk to more than one secure servers.

I am using keytool to import the certificate.

Certificate import steps:

keytool -import -keystore aaa.jks -file aaa.co.uk.cer

keytool -import -keystore bbb.jks -file bbb.co.uk.cer

It works fine with one certificate but as soon as I import the second certificate the previous one stops working.

Error:

    Exception:javax.naming.CommunicationException: 
simple bind failed: aaa.co.uk:636 
[Root exception is 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

I also tried the following steps but it's still failing:

keytool -import -keystore aaa.jks -alias ms -file aaa.co.uk.cer

keytool -import -alias ms -file bbb.co.uk.cer

I think I should be appending the certificates in one keystore but don't know how to do it.

Any idea how to do it or am I missing something?

Env: Java 1.6
App Server: Glassfish

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青丝拂面 2024-11-09 14:51:20

感谢@BertNase 的建议。

以下导入命令已修复该问题:

keytool -import -keystore myStore.jks -alias aliasA -file aaa.co.uk.cer
keytool -import -keystore myStore.jks -alias aliasB -file bbb.co.uk.cer

现在,此命令将两个证书导入同一密钥库中。

Thanks to @BertNase for suggestion.

The following import command has fixed the issue:

keytool -import -keystore myStore.jks -alias aliasA -file aaa.co.uk.cer
keytool -import -keystore myStore.jks -alias aliasB -file bbb.co.uk.cer

Now, this command imports both certificates in the same keystore.

无所谓啦 2024-11-09 14:51:20

也许您将两个证书导入到同一个别名?

告诉我们您正在使用的 keytool 命令行以及第二次导入后到底是什么“停止工作”。

Perhaps you import both certificates to the same alias ?

tell us the keytool command line you are using and what exactly 'stops working' after the second import.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文