Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Current »

Official influxDB documentation

The official influxDB documentation for the version 1.0 is located on https://docs.influxdata.com/influxdb/v1.0/.

Installation

Navigate to https://influxdata.com/downloads/#influxdb and download version v1.0.0.

Startup and Shutdown

InfluxDB runs as a service. Start the database by

sudo service influxdb start

Configuration

Database Creation

We use the database called "inspectit". You do not have to create it as the CMR monitoring will create the database if it is not available.

Disable Reporting

As of version 0.7.1, InfluxDB reports anonymous data once every 24 hours to m.influxdb.com. To minimize our bandwidth usage, we will disable this reporting. Find the file /etc/influxdb/influxdb.conf. Change the property reporting-disabled to true.

reporting-disabled = true 

Admin Web-Interface

InfluxDB provides an admin web-interface which is disabled by default. It can be enabled by setting the following configuration parameter:

[admin]
	https-enabled = true

Enable Authentication

By default, InfluxDB allows full access to the system for all (anonymous) users.

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

Verify the installation

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

Setting ulimit -n 65536
Starting the process influxdb [ OK ]
influxdb process was started [ OK ]

Please also navigate to http://[yourserver]:8083 and verify that you see the web-based view of influxDB.

Point inspectIT to your influxDB instance

Once you have influxDB running, you need to setup inspectIT and point to the database you want to write data to. Please check Long-term Data Persistence Configuration for short instructions on how to do that. 

  • No labels