使用 .key、.ca 和 .cert 文件为 tomcat 创建 jks

使用 .key、.ca 和 .cert 文件为 tomcat 创建 jks

我有三个文件sample.cert,sample.CA,sample.key,由Verisign提供。我需要为tomcat创建密钥库。正如我所搜索的,我无法直接使用.key文件来创建密钥库。

我使用的命令如下:

 pkcs12 -export -in sample.cert -inkey sample.key  -CAfile sample.crt -out sample.p12

(我将sample.CA更改为sample.crt。)

我使用 openssl 创建了 sample.p12 文件。然后我使用 keytool 将 sample.p12 导入到 sample.jsk。

    keytool -importkeystore -srckeystore sample.p12 -destkeystore sample.jks -srcstoretype pkcs12     

当我验证证书时它显示Intermediate certificate chaining issue

任何想法?

相关内容