Caused by: java.security.UnrecoverableKeyException: Cannot recover key

后端 未结 5 901
名媛妹妹
名媛妹妹 2020-11-28 23:03

I am supplied with a jks keystore named ABCC_client.store. When I import this keystore to cacerts and try connecting it says No such Algorithm error. PFA the stacktrace

5条回答
  •  隐瞒了意图╮
    2020-11-28 23:59

    Check if password you are using is correct one by running below command

    keytool -keypasswd -new temp123 -keystore awsdemo-keystore.jks -storepass temp123 -alias movie-service -keypass changeit
    

    If you are getting below error then your password is wrong

    keytool error: java.security.UnrecoverableKeyException: Cannot recover key
    

提交回复
热议问题