Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The following explanations assume CA-signed certificates or self-signed certificates to be used.
    • Private CA-signed certificates are provided from known and trusted Certificate Authorities (CA) that validate the domain owner.Self-signed certificates are Certificates are created by users who operate their own CA, see the JS7 - How to create X.509 SSL TLS Certificates.
    • Public CA-signed Certificates are provided from known and trusted Certificate Authorities (CA) that validate the domain owner.
    • Use of Intermediate CA Certificates is optional.
  • Certificate stores can be managed from the command line and by use of tools that provide a GUI for this purpose:
    • the Java Keytool is available from the Java JRE or JDK,
    • the Keystore Explorer is an open source utility to graphically manage certificate stores.
  • Starting from Java 9 the PKCS12 keystore type is default and is not required to be specified with keytool.
  • The following sections assume a PKCS12 keystore/truststore format. For Unix OS the .p12 file extension frequently is used, for Windows OS the .pfx extension is preferably used. Both file extensions indicate the same PKCS12 format and can be used interchangeably.
  • The following explanations assume JOC Cockpit starting from release 2.5 to be used. This release introduces Jetty 11. Earlier releases of JOC Cockpit ship with Jetty 9 and make use of a single configuration file JETTY_BASE/start.ini instead of separate configuration files JETTY_BASE/start.d/http.ini, JETTY_BASE/start.d/https.ini, JETTY_BASE/start.d/ssl.ini.

...

  • On the JOC Cockpit server create the keystore using openssl and the keytool from your Java JRE, JDK or other third 3rd-party utility.
    • For use with a third 3rd-party utility create a keystore, e.g. https-keystore.p12, in PKCS12 format and import:
      • the JOC Cockpit private key and certificate for Server Private Key and Certificate for Server Authentication
      • the Root CA Certificate
      • Intermediate CA Certificate(s)
    • The examples below describe a possible approach for certificate management, however, there are other ways to achieve similar results.
      • Example for importing an existing Private Key and CA-signed Certificate to a keystore:

        Code Block
        languagebash
        titleExample how to add a private key Private Key and CA-signed certificate Certificate to a PKCS12 keystore
        # Assume the fully qualified domain name (FQDN) of the JOC Cockpit server to be "joc.example.com"
        
        # If the JOC Cockpit CA-signed certificateCertificate is provided from a pkcs12 keystore (certificate.p12), extract the JOC Cockpit certificateCertificate to a .crt file in PEM format (joc.example.com.crt)
        # openssl pkcs12 -in certificate.p12 -nokeys -out joc.example.com.crt
        
        # Import the JOC Cockpit Private Key (joc.example.com.key) and JOC Cockpit Certificate (joc.example.com.crt) from PEM format to a new keystore (joc.example.com.p12)
        openssl pkcs12 -export -in joc.example.com.crt -inkey joc.example.com.key -name joc.example.com -out "JETTY_BASE/resources/joc/https-keystore.p12"
        Hide If
        currentSpaceJS7
        Code Block
        languagebash
        titleExample how to add a private key Private Key and CA-signed certificate Certificate to a PKCS12 keystore
        # If the JOC Cockpit's privatePrivate keyKey and certificateCertificate are provided with a .jks keystore (keypair.jks) then temporarily convert the keystore to pkcs12 (keystore.p12)
        #   for later use with openssl, assuming the alias name of the JOC Cockpit privatePrivate keyKey being "joc.example.com"
        # keytool -importkeystore -srckeystore keypair.jks -srcstoretype JKS -destkeystore keystore.p12 -deststoretype PKCS12 -srcalias joc.example.com
        
        # Assuming the JOC Cockpit privatePrivate keyKey from a pkcs12 keystore (keystore.p12), store the JOC Cockpit privatePrivate keyKey to a .key file in PEM format (joc-https.key)
        openssl pkcs12 -in keystore.p12 -nocerts -out joc-https.key
        
        # Concatenate the CA Root certificateCertificate and optionally CA Intermediate certificatesCertificates to a single CA Bundle certificate file (ca-bundle.crt)
        cat RootCACertificate.crt > ca-bundle.crt
        cat CACertificate.crt >> ca-bundle.crt
        
        # Export the JOC Cockpit privatePrivate keyKey (joc-https.key), JOC Cockpit certificateCertificate (joc-https.crt) and CA Bundle (ca-bundle.crt) in PEM format to a new keystore (https-keystore.p12)
        #   assume the fully qualified domain name (FQDN) of the JOC Cockpit server to be "joc.example.com"
        openssl pkcs12 -export -in joc-https.crt -inkey joc-https.key -chain -CAfile ca-bundle.crt -name joc.example.com -out "JETTY_BASE/resources/joc/https-keystore.p12"
        
        # If you require use of a .jks keystore type then convert the pkcs12 keystore, assuming the alias name of the JOC Cockpit private key to be "joc.example.com"
        # keytool -importkeystore -srckeystore https-keystore.p12 -srcstoretype PKCS12 -destkeystore https-keystore.jks -deststoretype JKS -srcalias joc.example.com



      • Example for creating a Private Key and selfCA-signed Certificate and importing to a keystore

        • Refer to examples available from JS7 - How to create X.509 SSL TLS Certificates, chapter Creating SSL/TLS Server Certificates.

          Code Block
          languagebash
          titleExample how to create a private key Private Key and selfCA-signed certificateCertificate
          # Creating the Private Key and selfCA-signed Certificate for the given validity period
          ./create_server_certificate.sh --dns=joc.example.com --days=365
        • Refer to examples available from JS7 - How to add SSL TLS Certificates to Keystore and Truststore.

          Code Block
          titleExample how to add a private key Private Key and certificate Certificate to a PKCS12 keystore
          # Adding the Private Key and Certificate to a keystore
          ./js7_create_certificate_store.sh \
              --keystore=JETTY_BASE/resources/joc/https-keystore.p12 \
              --key=joc.example.com.key \
              --cert=joc.example.com.crt \
              --alias=joc.example.com \
              --password="jobscheduler"


          When using additional arguments for creation of a truststore then users can skip the later step 3:

          Code Block
          titleExample how to add a private key Private Key and certificate Certificate to a PKCS12 keystore and the Root CA Certificate to a truststore
          # Adding the private key and certificate to a keystore and Root CA Certificate to a truststore
          ./js7_create_certificate_store.sh \
              --keystore=JETTY_BASE/resources/joc/https-keystore.p12 \
              --truststore=JETTY_BASE/resources/joc/https-keystore.p12 \ 
              --key=joc.example.com.key \
              --cert=joc.example.com.crt \
              --alias=joc.example.com \
              --password="jobscheduler" \
              --ca-root=root-ca.crt
          Hide If
          endDateTime2024-08-20T00:00:00
          currentSpaceJS7
          Code Block
          languagebash
          titleExample how to generate a private key Private Key and selfCA-signed certificate Certificate for import into a PKCS12 keystore
          collapsetrue
          # Generate the JOC Cockpit's privatePrivate keyKey with the "joc.example.com" alias name and certificateCertificate in a keystore (https-keystore.p12)
          #   use the fully qualified domain name (FQDN) assumed to be "joc.example.com" and name of your organization for the distinguished name
          #   Note that PKCS12 keystores require to use the same key password and store password
          keytool -genkey -alias "joc.example.com" -dname "CN=joc.example.com,O=organization" -validity 1461 -keyalg RSA -keysize 2048 -keypass jobscheduler -keystore "JETTY_BASE/resources/joc/https-keystore.p12" -storepass jobscheduler -storetype PKCS12

...

  • For JOC Cockpit Server Authentication a truststore technically is not needed. However, the Jetty servlet container requires a truststore to be in place. An empty truststore should not be used, instead create a truststore with the Root CA Certificate.
  • Users who create the truststore with above step 2 can skip this step.
  • On the JOC Cockpit server create the truststore using the keytool from your Java JRE, JDK or some third 3rd-party utility.
    • For use with a 3rd-party utility create a truststore, e.g. https-truststore.p12, in PKCS12 format and import:
      • Root CA Certificate
    • The below examples suggest a possible approach for certificate management - however, there may be other ways how to achieve similar results.
      • Example for import of a Root CA Certificate to a PKCS12 truststore:

        Code Block
        languagebash
        titleExample how to import a Root CA Certificate to a PKCS12 truststore
        # import Root CA Certificate in PEM format to a PKCS12 truststore (https-truststore.p12)
        keytool -importcert -alias "root-ca" -file "root-ca.crt" -keystore "JETTY_BASE/resources/joc/https-truststore.p12" -storetype PKCS12
      • Example for import of a Root CA Certificate to a JKS truststore:

        Code Block
        languagebash
        titleExample how to import a Root CA Certificate to a JKS truststore
        collapsetrue
        # import Root CA Certificate in PEM format to a JKS truststore (https-truststore.jks)
        keytool -importcert -alias "root-ca" -file "root-ca.crt" -keystore "JETTY_BASE/resources/joc/https-truststore.jks" -storetype JKS

...