| Aiden Keating Laura Fitzgerald Matthias Wessendorf SSL certificates are validated against CA certificates stored inside the $JAVA_HOME/jre/lib/security/truststore file That file is a simple JKS file and can be manipulated using the keytool command. Self signed certificates are, of course, not trusted since they have not been signed by a trusted CA (whose certificate is inside the truststore file). A workaround to make a signed certificate work, is adding that certificate inside the truststore file marking it as `trusted` The command to be used to import the certificate is keytool --importcert The standard password for JAVA truststore files is changeit |