Skip to content

Instantly share code, notes, and snippets.

@brainsik
Created September 7, 2017 00:58
Show Gist options
  • Save brainsik/41f5c2848bd3919b3bebda9067aa35f0 to your computer and use it in GitHub Desktop.
Save brainsik/41f5c2848bd3919b3bebda9067aa35f0 to your computer and use it in GitHub Desktop.
Command to add a CA to your Java key store
$jre/bin/keytool \
-import \
-trustcacerts \
-file /path/to/MyIntermediateCA.crt \
-alias MyIntermediateCA \
-keystore $jre/lib/security/cacerts \
-storepass changeit \
-noprompt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment