Versions Compared

Key

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

...

  1. Install the Server Certificate

    • The server certificate is the certificate issued specifically for your domain by the CA.

    • Use the command cert install server [path/to/your/server.crtcontent of your server certificate] to install your server certificate. Replace [path/to/your/server.crtcontent of your server certificate] with the actual path to content of your server certificate file.

    Example:

    Code Block
    cert install server /etc/ssl/certs/cip_server_certificate.crt "-----BEGIN CERTIFICATE-----
    MIIDdTCCAl2gAwIBAgIEAjbxrzANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJB
    ...
    -----END CERTIFICATE-----"
  2. Install the Private Key

    • The private key is generated when you create your CSR (Certificate Signing Request). It should be kept secure and private.

    • Use the command cert install private [path/to/your/private.content of your private key] to install your private key. Replace [path/to/your/private.content of your private key] with the actual path to content of your private key file.

    Example:

    Code Block
    cert install private /etc/ssl/private/cip_server_private.key "-----BEGIN PRIVATE KEY-----
    MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQ...
    ...
    -----END PRIVATE KEY-----"
  3. Install Intermediate Certificates (if applicable)

    • Intermediate certificates are used to chain yours to the root certificate of your CA, aiding in the trust process.

    • Use the command cert install intermediate [path/to/your/intermediate.crtcontent of your intermediate certificate] to install any intermediate certificates provided by your CA. Replace [path/to/your/intermediate.crtcontent of your intermediate certificate]with the actual path to content of your intermediate certificate file.

    Example:

    Code Block
    cert install intermediate "-----BEGIN CERTIFICATE-----
    /etc/ssl/certs/cip_intermediate_certificate.crtMIIFVzCCBD+gAwIBAgISESHsxxO/bOtJmD72x7zbZ... 
    ...
    -----END CERTIFICATE-----"

Ensure that after installing the certificates, you verify the configuration by accessing your CIP server over HTTPS using the corresponding URL mentioned in section 4. If you encounter any certificate errors, double-check the installation steps and the certificate paths.

...