InfluxDB 2.x: Administration: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „ == Influx CLI == '''Influx CLI documentation:''' https://docs.influxdata.com/influxdb/v2.1/tools/influx-cli/ === Configure Influx CLI (Linux) === ''Usually t…“)
 
 
Zeile 3: Zeile 3:
 
'''Influx CLI documentation:''' https://docs.influxdata.com/influxdb/v2.1/tools/influx-cli/
 
'''Influx CLI documentation:''' https://docs.influxdata.com/influxdb/v2.1/tools/influx-cli/
  
=== Configure Influx CLI (Linux) ===
+
=== Get Influx CLI Configuration ===
 +
influx config
 +
 
 +
=== Configure Influx CLI ===
 
''Usually the Influx CLI will be configured with local InfluxDB configuration, but if you want to change the following guide maybe helps.''
 
''Usually the Influx CLI will be configured with local InfluxDB configuration, but if you want to change the following guide maybe helps.''
  

Aktuelle Version vom 3. Februar 2022, 09:29 Uhr

Influx CLI

Influx CLI documentation: https://docs.influxdata.com/influxdb/v2.1/tools/influx-cli/

Get Influx CLI Configuration

influx config

Configure Influx CLI

Usually the Influx CLI will be configured with local InfluxDB configuration, but if you want to change the following guide maybe helps.

influx config create --active -n <CONFIGURATION_NAME> -u http://localhost:<YOUR_INFLUXDB_PORT> -o <INFLUXDB_ORG> -t <INFLUXDB_TOKEN>

User Management

#Create User:
influx user create -n <USERNAME> -p <PASSWORD> -o <INFLUXDB_ORG> 
 
#List User:
influx user ls
 
#Remove User:
influx user delete -i <ID>