Versions Compared

Key

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

...

The following examples represent typical use cases. Users should consider to specify current releases, see JS7 - Download.

Create Keystore and Truststore (recommended)

Code Block
titleExample for use of Certificate Management Script
linenumberstrue
./js7_create_certificate_store.sh \
    --keystore=./certs/https-keystore.p12 \
    --truststore=./certs/https-truststore.p12 \
    --key=./certs/apmaccs.key \
    --cert=./certs/apmaccs.crt \
    --alias=apmaccs \
    --password=jobscheduler \
    --ca-cert=./certs/ca-bundle.crt

# creates a keystore from the key and certificate
# creates a truststore from the CA Certificate Bundle
# the keystore and truststore will be protected with the given password

...