Influxdb: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „=Install== *apt-get install influxdb influxdb-client =Influx Client= *influx >sss“) |
|||
| (13 dazwischenliegende Versionen von 4 Benutzern werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
| − | =Install | + | =Install= |
| − | * | + | *[[Influxdb install]] |
| + | |||
=Influx Client= | =Influx Client= | ||
| + | ==Enter the Client== | ||
| + | ===Plaintext=== | ||
*influx | *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 | ||
| + | <pre> | ||
| + | [http] | ||
| + | https-enabled = true | ||
| + | https-certificate = "/etc/ssl/my-cert.crt" | ||
| + | https-private-key = "/etc/ssl/my-key.key" | ||
| + | </pre> | ||
| + | *systemctl restart influxdb.service | ||
| + | =Influxdb Querys= | ||
| + | *[[Influxdb Querys]] | ||
Aktuelle Version vom 29. März 2023, 07:35 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