Anil Datt Blogs
Importing SSH generated keys to weblogic DemoTrust java key store
java Keytool does not let you directly import the keys that are created using SSH-keygen into Java key store(.jks file). Here are the steps to import it. 1. Convert the key to X509 pem format openssl req -new -x509 -key id_rsa -out id_pem Answer the questions
................... .pem file is generated id_pem id_rsa id_rsa.pub known_hosts 2. Import the keys to weblogic demo trust store keytool -import -alias mykey -trustcacerts -file /home/dathu/.ssh/id_pem -keystore DemoTrust.jks Enter the password for the DemoTrust key store when prompted Trust this certificate? [no]: yes Certificate was added to keystore |
1-1 of 1