Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== OpenSSL install root certificates ====== ===== System ===== Simply copy the certificate to ''/etc/ssl/certs'' ===== Java ===== The public key certificates need to be in DER format (not PEM). Use openssl to convert the ca certificate if necessary: <code>$ openssl x509 -in my-ca.crt -inform pem -out my-ca.der -outform der</code> Import the certificate <code># keytool -importcert -alias local-CA \ -keystore /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/lib/security/cacerts \ -file my-ca.der</code> The password for the cacerts keystore is ''changeit''. infra/openssl_root_certificates.txt Last modified: 20/11/2021 01:57by harm