Search This Blog

Sunday, 8 January 2017

How To Extract JKS (Java KeyStore) from PEM file

How to Extract JKS (Java KeyStore) from PEM file 

The below steps has to be perfomed to extract jks from pem file

Step 1:
opensslx5O9 -outform der-in/bidata/projects/abc/keystore/cba.pem -out
/bidata/projects/abc/keystore/abcKeyStore.der

Step 2:
keytool-import-alias your-alias -keystore /bidata/projects/abc/keystore/abcKeystore.ks -file
/bidata/projetfs/abc/keystore/abcKeyStore.der




No comments:

Post a Comment

Spark Memory Management

 Spark’s performance advantage over MapReduce  is due to Spark’s In-Memory Persistence and Memory Management Rather than writing to disk ...