为Tomcat创建证书,尝试将其安装到新密钥库中,但遇到错误(编辑:使用-v选项运行,现在正在获取更多信息):
keytool error: java.io.IOException: keystore password was incorrect
java.io.IOException: keystore password was incorrect
at sun.security.pkcs12.PKCS12KeyStore.engineLoad(PKCS12KeyStore.java:2015)
at java.security.KeyStore.load(KeyStore.java:1445)
at sun.security.tools.keytool.Main.loadSourceKeyStore(Main.java:1894)
at sun.security.tools.keytool.Main.doImportKeyStore(Main.java:1926)
at sun.security.tools.keytool.Main.doCommands(Main.java:1021)
at sun.security.tools.keytool.Main.run(Main.java:340)
at sun.security.tools.keytool.Main.main(Main.java:333)
Caused by: java.security.UnrecoverableKeyException: failed to decrypt safe contents entry: java.io.IOException: getSecretKey failed: Password is not ASCII
可悲的是,它是正确的,密码短语有两个“®".那么,鉴于我所做的(私钥有非ASCII密码),从这个恢复会有多大的痛苦?:
1: Create a passphrase file: vi .kp
2: Make CSR:
A: Generate a 2048 bit private key:
openssl genpkey -algorithm RSA -outform PEM -out mike.privateKey.pass.pem -pkeyopt rsa_keygen_bits:2048 -pass file:.kp
B: Make the CSR:
openssl req -new -sha256 -key mike.privateKey.pass.pem -out mike.ike.com.cert.csr
Note: CSR has different "challenge password" than in the passphrase file, if that matters
3: Submit CSR to Comodo
4: Get certificate file mike_ike_com.cer & Comodo trust chain files: COMODORSAOrganizationValidationSecureServerCA.crt, COMODORSAAddTrustCA.crt, AddTrustExternalCARoot.crt
5: Convert the Certificates:
A: Convert to PEM:
openssl x509 -inform DER -in COMODORSAOrganizationValidationSecureServerCA.crt -out COMODORSAOrganizationValidationSecureServerCA.pem -outform PEM
openssl x509 -inform DER -in COMODORSAAddTrustCA.crt -out COMODORSAAddTrustCA.pem -outform PEM
openssl x509 -inform DER -in AddTrustExternalCARoot.crt -out AddTrustExternalCARoot.pem -outform PEM
B: Concat into a single file:
cat COMODORSAOrganizationValidationSecureServerCA.pem COMODORSAAddTrustCA.pem AddTrustExternalCARoot.pem > Comodo.root.crt
C: Use openssl to create a pkcs12 file:
openssl pkcs12 -export -in mike_ike_com.cer -inkey mike.privateKey.pass.pem -passin file:.kp -out mike_ike.p12 -name tomcat -caname root -chain -CAfile Comodo.root.crt
Note: when it asks "Enter Export Password" I give it the pw from .kp
6: Use keytool to create the keystore file:
$JAVA_HOME/bin/keytool -importkeystore -deststorepass:file .kp -destkeypass:file .kp -destkeystore .keystore -srckeystore mike_ike.p12 -srcstoretype PKCS12 -srcstorepass:file .kp -alias tomcat
文件“.keystore”不存在。我假设keytool将创建它
4条答案
按热度按时间z4iuyo4d1#
我已经解决了这个问题。我使用我的密码“password”来更新JDK中的cacerts密钥库,而cacerts密钥库的默认密码是“changeit”
3bygqnnd2#
好吧,我有答案了。
1:我的密码中有一个非ASCII字符。openssl可以处理这个问题,keypass不能。
2:使用非ASCII密码创建私钥后,我无法摆脱它,所以我将该文件重命名为.kpkey,并使用纯ASCII密码创建了一个新的.kp文件
3:这需要变更为5:C:
注意:当它询问“输入导出密码”时,我从.kp而不是.kpkey给予它pw。唯一的变化是**-passin文件:.kpkey**
其他一切都保持不变,并且正常工作
3lxsmp7m3#
我想补充另一个可能的原因:
此错误消息可能会引起误解,因为当密钥库的格式不受支持时也会出现此错误消息。
6ljaweal4#
在我们的情况下,Application Server没有打开应用程序提供的
Keystore.p12
,而是在启动时生成的KeyStore.p12
,两者位于不同(但相似)的路径中,但使用不同的密码。