Influxdb: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| Zeile 10: | Zeile 10: | ||
==Grant rights to user== | ==Grant rights to user== | ||
>grant all on telegraf to telegraf; | >grant all on telegraf to telegraf; | ||
| + | ==Drop a database== | ||
| + | >drop database telegraf; | ||
| + | ==Drop a user== | ||
| + | >drop user telegraf with password ‘oimel’; | ||
Version vom 15. Mai 2017, 13:31 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;
Drop a database
>drop database telegraf;
Drop a user
>drop user telegraf with password ‘oimel’;