使用客户提供的“server.store”文件,我需要为密钥库创建证书和密码,同时我还需要知道提供“server.store”的格式。 PKS或PEM格式?我如何从现有的“server.store”文件中检查格式。
答案 0 :(得分:0)
假设您的server.store是一个密钥库, 你尝试过keytool吗?
您应该能够列出证书:
keytool -list -v -keystore server.store
并使用
导出keytool -export -alias mydomain -file mydomain.crt -keystore server.store
然后您可以导出证书并在网络上的许多教程之一之间将其转换为格式。 一些有用的链接:
http://support.citrix.com/article/CTX106631
http://www.sslshopper.com/article-most-common-java-keytool-keystore-commands.html
HTH。