Versions Compared

Key

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

...

Now, depending on your Checkmk infrastructure, choose the appropriate manual:

Checkmk Appliance

Panel
borderColorblack
bgColor#F8F8F8
  1. Log into the webconf

  2. Navigate to Device Settings > Web Access

  3. Choose Upload Certificate

  4. Now choose the appropriate files and click Upload

Note

For the certificate chain, you only need the intermediate certificate(s), without the root certificate



Linux Server

Panel
borderColorblack
bgColor#F8F8F8

The following steps depend on your specific Linux distribution:

  1. Log into the server as root
    .
  2. Navigate to "/etc/[apache2|httpd]/"
    .
  3. Locate your website configuration file. In a default installation this would be:
    • Debian derivates: /etc/apache2/sites-available/default-ssl.conf
    • RedHat derivates: /etc/httpd/conf.d/my-ssl.conf
      .
  4. In the configuration file, you will find the following directives:

    Code Block
    languagebash
    themeRDark
    SSLCertificateFile      /path/to/certificate.pem
    SSLCertificateKeyFile   /path/to/certificate.key
    SSLCertificateChainFile /path/to/chain.pem

    .

  5. Save the file and reload Apache2: "systemctl reload [apache2|httpd]"

...