Influxdb: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 33: | Zeile 33: | ||
=Influxdb Querys= | =Influxdb Querys= | ||
*[[Influxdb Querys]] | *[[Influxdb Querys]] | ||
| + | =Influxdb API= | ||
| + | *[[Influxdb XPOST API]] | ||
Version vom 29. März 2023, 07:24 Uhr
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