Adding an SSL Certificate to JRE in order to access HTTPS sites

35,365

You should be able to import the server (self-signed?) SSL certificate onto your localhost using the command you specified. To be more complete, you can try

$JAVA_HOME/bin/keytool -import -alias mycertificate -keystore path_to_keystore -file certificate_file 

where

  • $JAVA_HOME on Mac is /System/Library/Frameworks/JavaVM.framework/Home/
  • path_to_key_sotre is $JAVA_HOME/lib/security/cacerts
  • certificate_file is where you store the downloaded certificate

If prompted, the default truststore password is changeit.

Share:
35,365
mosawi
Author by

mosawi

Updated on September 21, 2020

Comments

  • mosawi
    mosawi over 3 years

    Context:

    So I'm trying to access an HTTPS site from my Java code but I am not able due to an SSL Handshake issues between my localhost and the server. It seems the reason for this issues is that the URL I am trying to access has no valid certificate issued from an authorized CA.

    So after some research, I'm going to try to import the offending SSL certificates into my JRE, that way it can be validated.

    Question:

    What is the mac equivalent of this command using the keytool for importing certificates:

    keytool -import -alias mycertificate -keystore ..\lib\security\cacerts -file c:\mycert.cer
    

    Reference:

    http://www.jyothis.co.in/2011/11/12/javax-net-ssl-sslhandshakeexception/

    Any help or assistance would be much appreciated, thank you

  • AmiNadimi
    AmiNadimi about 6 years
    path_to_key_store requires also a file name. is it important how we name it? what extension should it have?
  • Sjoerd During
    Sjoerd During about 4 years
    the cacerts keystore could also be in the jre/lib/security folder: $JAVA_HOME/jre/lib/security/cacerts