We have to add the local ssl certificates (cert.pem) to GraphDB's image and run the following. This fixes an issue where federated queries are erroring out due to ssl trust issues.
RUN \
cd $JAVA_HOME/lib/security \
&& keytool -keystore cacerts -storepass changeit -noprompt -trustcacerts -importcert -alias ldapcert -file cert.pem
We have to add the local ssl certificates (
cert.pem
) to GraphDB's image and run the following. This fixes an issue where federated queries are erroring out due to ssl trust issues.