Influxdb: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| Zeile 2: | Zeile 2: | ||
*apt-get install influxdb influxdb-client | *apt-get install influxdb influxdb-client | ||
=Influx Client= | =Influx Client= | ||
| + | ==Enter the Client== | ||
*influx | *influx | ||
| − | > | + | ==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; | ||
Version vom 15. Mai 2017, 13:26 Uhr
Install
- apt-get install influxdb influxdb-client
Influx Client
Enter the Client
- influx
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;