IDI Version 10 ships with PKCS12 keystores rather than JKS keystores, but the file names still end with .jks, which can be quite confusing, especially if you're still running on an OS that has an older version of java as the system java. If you have your shell configured with the defaults and you just run something like:
keytool -list -keystore testserver.jks -v
You'll get the following error:
keytool error: java.io.IOException: Invalid keysstore format
java.io.IOException: Invalid keystore format
...
The simple fix for this is to provide the full path the the IDI-provided keytool command, such as:
/opt/IBM/TDI/cev10/jvm/jre/bin/keytool -list -keystore testserver.jks -v
Which will show you details about all of the certificates in the testserver.jks keystore.
FYI: the default password for testserver.jks is "server" and for serverapi/testadmin.jks, it is "administrator"
No comments:
Post a Comment