问题描述
我需要将证书导入我的JVM密钥库。我使用以下内容:
I need to import a certificate into my JVM keystore. I am using the following:
keytool -import -alias daldap -file somecert.cer
因此我可能需要将我的电话改为:
so I would need to probably change my call into something like:
keytool -import -alias daldap -file somecert.cer -keystore cacerts –storepass changeit
推荐答案
您的密钥库将在您的 JAVA_HOME ---> JRE - > lib --->安全 - > cacerts中
。您需要检查JAVA_HOME的配置位置,可能是其中一个地方,
Your keystore will be in your JAVA_HOME---> JRE -->lib---> security--> cacerts
. You need to check where your JAVA_HOME is configured, possibly one of these places,
-
计算机--->高级 - >环境变量---> JAVA_HOME
Computer--->Advanced --> Environment variables---> JAVA_HOME
您的服务器启动批处理文件。
Your server startup batch files.
在你的导入命令-keystore cacerts中(在这里提供上述JRE的完整路径,而不仅仅是说cacerts)。
In your import command -keystore cacerts (give full path to the above JRE here instead of just saying cacerts).
这篇关于如何找出我的JVM使用的密钥库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!