Leave a comment at the end of this page or email contact@krishagni.com
Importing certificates into JVM trust store
OpenSpecimen connects to external servers like REDCap, OpenClinica to import clinical data, LDAP directories to authenticate users etc. If the certificate of these external servers is signed by a CA whose certificate is not present in the trust store by default then those CA certificates need to be installed in the trust store.
Given below are the steps to import the certificate in trust store:
Copy the CA (root) certificate to the directory
$JAVA_HOME/jre/lib/security
Change directory to
$JAVA_HOME/jre/lib/security
Import the certificate in trust store using the following command:
$ keytool -import -alias <certificate_alias> \ -file <certificate_file.cer> \ -keystore cacerts \ -storepass changeit
On importing, restart the OpenSpecimen server/process.
Leave a comment at the end of this page or email contact@krishagni.com