Versions Compared

Key

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

...

The process of enabling the authentication can be found in the official InfluxDB documentation: https://docs.influxdata.com/influxdb/v1.0/query_language/authentication_and_authorization/#set-up-authentication

Enable SSL Connection

By default, inspectIT uses an HTTP connection to influxDB. If you would like to secure the connection with SSL, you need to enables this in the influxDB configuration. Therefore, you need to specify the following configuration properties. For more details please refer to the documentation of influxDB: https://docs.influxdata.com/influxdb/v1.0/administration/config#https-enabled-false-1

Code Block
languagebash
[http]
...
# Determines whether HTTPS is enabled.
  https-enabled = true
...
# The SSL certificate to use when HTTPS is enabled.
  https-certificate = "<bundled-certificate-file>.pem"
...
# Use a separate private key location.
  https-private-key = "<bundled-certificate-file>.pem"


Verify the installation

On a successful start, the service manager script will provide the following output.

...