Influxdb
Version vom 15. Mai 2017, 13:31 Uhr von Thomas (Diskussion | Beiträge)
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’;