Skip to content

Configuring the TLS Encryption


Caution - cluster

If you run PLOSSYS Output Engine in a cluster, perform the following configuration steps on every member of the replica set separately.

In order to secure the connection to MongoDB you need a combined PEM file that contains both, the TLS certificate and the private key.

  1. Change to the /opt/seal/etc/tls/ directory:

    cd "/opt/seal/etc/tls/"
    
  2. Combine

    • the cert.pem file containing the certificate and

    • the key.pem file containing the private key:

    to one single cert-key-combined.pem file:

    cat cert.pem key.pem > cert-key-combined.pem
    

Back to top