keytool -import -alias abcdomain -file "/usr/certs/mycert.cer " -keystore "/usr/certs/mykeystore.jks" Enter a password for the keystore, make sure to remember this password as it will be used in configuring the HTML Server in Server Manager. You will be prompted to tru...
2. Export the private key from pfx to a PEM file using openssl: e.g. openssl pkcs12 -in keystore.pfx -nocerts -out encryptedkey.pem 3. Remove the private key passphrase: e.g. openssl rsa -in encryptedkey.pem -out decryptedkey.pem The file called decrypted...
FROM quay.io/quarkus/centos-quarkus-maven:19.3.1-java11 AS build RUN mkdir -p /tmp/ssl \ && cp /opt/graalvm/lib/security/cacerts /tmp/ssl COPY custom-cert.crt /tmp/ssl RUN keytool -import -alias self-signed -noprompt -storepass changeit -file /tmp/ssl/custom-cert.crt -keystore /t...
keytool -import -alias abcdomain -file "/usr/certs/mycert.cer " -keystore "/usr/certs/mykeystore.p12" Enter a password for the keystore, make sure to remember this password as it will be used in configuring the HTML Server in Server Manager. You will be prompted to trust...