Influxdb
Install
- wget https://dl.influxdata.com/influxdb/releases/influxdb_1.2.2_amd64.deb
- sudo dpkg -i influxdb_1.2.2_amd64.deb
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’;