An Invalid keystore password error indicates an issue with the keystore file being used. After confirming the password is input correctly, without trailing or leading spaces or special characters, reviewing the .keystore file with keytool can be helpful. Here is an example command:
keytool -v -list -keystore example_file_name.jks
Some additional notes:
- If the keystore file is a PKCS12, the passwords must be the same for both the key password and store password.
- The version of JDK being used to create the keystore could cause the keystore file to be corrupt, so you may need to update JDK versions and regenerate the key. At the time of this writing, JDK 19 is confirmed to work.
Comments
0 comments
Article is closed for comments.