Durchsuchbare Dokumentation aufrufen | Zurück zur Dokumentationsübersicht
Navigation: Dokumentationen agorum core > Übersicht tags
Bei agorum core-Systemen, die älter als 9.4.0 sind, enthält die mitgelieferte Version der Java-VM nicht das Root-Zertifikat, das für die Verbindung mit Let's Encrypt-geschützten Servern nötig ist.
Diese Dokumentation beschreibt die Einrichtung des Root-Zertifikats.
/root/.truststoreUnter Windows
c:\windows\system32\config\systemprofile\.truststore
<Installationspfad>/java/bin/keytool -keystore /root/.truststore -storepass changeit -noprompt -trustcacerts -importcert -file <Zertifikat> -alias trustid-x3-root typischerweise: /opt/agorum/agorumcore/java/bin/keytool -keystore /root/.truststore -storepass changeit -noprompt -trustcacerts -importcert -file trustid-x3-root.pem.txt -alias trustid-x3-rootUnter Windows
<Installationspfad>\java\bin\keytool -keystore c:\windows\system32\config\systemprofile\.truststore -storepass changeit -noprompt -trustcacerts -importcert -file <Zertifikat> -alias trustid-x3-root
set JAVA_OPTS=%JAVA_OPTS% -Djavax.net.ssl.trustStore=c:\windows\system32\config\systemprofile\.truststore
JAVA_OPTS="$JAVA_OPTS -Djavax.net.ssl.trustStore=/root/.truststore"