Created
September 7, 2017 00:58
-
-
Save brainsik/41f5c2848bd3919b3bebda9067aa35f0 to your computer and use it in GitHub Desktop.
Command to add a CA to your Java key store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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