Influxdb: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
Zeile 1: Zeile 1:
 
=Install=
 
=Install=
*apt-get install influxdb influxdb-client
+
*wget https://dl.influxdata.com/influxdb/releases/influxdb_1.2.2_amd64.deb
 +
*sudo dpkg -i influxdb_1.2.2_amd64.deb
 +
 
 
=Influx Client=
 
=Influx Client=
 
==Enter the Client==
 
==Enter the Client==

Version vom 15. Mai 2017, 13:38 Uhr

Install

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’;