Ce contenu n'est pas disponible dans la langue sélectionnée.
E.5. Java Keystores
This appendix demonstrates how to import the X.509 certificate exported from the Red Hat Storage Console into a new Java keystore file.
This procedure helps a user import the rhsc.cer certificate into a Java keystore. This procedure requires the
keytool
management utility from the Java Development Kit (JDK) available for Linux and Windows systems.
Procedure E.5. Import a Certificate into a New Java Keystore
- Access your client machine and locate the
rhsc.cer
certificate. - Import the
rhsc.cer
certificate using the Javakeytool
management utility.keytool -importcert -v -trustcacerts -keystore restapi.jks -noprompt -alias rhsc -file rhsc.cer
keytool -importcert -v -trustcacerts -keystore restapi.jks -noprompt -alias rhsc -file rhsc.cer
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Thekeytool
utility creates a new keystore file namedrestapi.jks
. keytool
asks for thekeystore
password. Enter a password andkeytool
asks to verify it.keytool
adds therhsc.cer
certificate to the restapi.jks keystore. Usekeytool -list
command to view the certificate's entry in the keystore:keytool -list -keystore restapi.jks -storepass [password]
keytool -list -keystore restapi.jks -storepass [password]
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Important
Some versions of
keytool
parse the certificate incorrectly. If keytool
does not recognize the certificate, convert it to a different X.509 format with the openssl
tool:
openssl x509 -in rhsc.cer -out rhsc.new -outform [pem|der]
openssl x509 -in rhsc.cer -out rhsc.new -outform [pem|der]
22632%2C+Console+Developer+Guide-322-09-2014+17%3A11%3A35Report a bug