Influxdb

Aus xinux.net
Zur Navigation springen Zur Suche springen

Install

Influx Client

Enter the Client

Plaintext

  • influx

ssl

  • influx -ssl -unsafeSsl

Create a database

>create database telegraf;

Create a user

>create user telegraf with password 'oimel';

Grant rights to user

>grant all on telegraf to telegraf;

Drop a database

>drop database telegraf;

Drop a user

>drop user telegraf with password ‘oimel’;

SSL Connection

  • Zertifikate nach /etc/ssl kopieren
  • vi /etc/influxdb/influxdb.conf
[http]
https-enabled = true
https-certificate = "/etc/ssl/my-cert.crt"
https-private-key = "/etc/ssl/my-key.key"
  • systemctl restart influxdb.service

Influxdb Querys