incorporated Scott and Kelvin edits
parent
b9f6098a64
commit
b75034ce12
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: influx config – Config management commands
|
||||
title: influx config
|
||||
description: The 'influx config' command and subcommands manage multiple InfluxDB connection configurations.
|
||||
menu:
|
||||
v2_0_ref:
|
||||
|
@ -9,7 +9,7 @@ weight: 101
|
|||
v2.0/tags: [config]
|
||||
---
|
||||
|
||||
The `influx config` command manages multiple InfluxDB connection configurations in the `config` file (by default, stored at `~/.influxdbv2/config`). Each connection includes a url, token, associated organization (`org`), and active setting.
|
||||
The `influx config` command manages multiple InfluxDB connection configurations file (by default, stored at `~/.influxdbv2/configs`). Each connection includes a URL, token, associated organization, and active setting. InfluxDB reads the token from the active connection configuration, so you don't have to manually enter a token to log into InfluxDB.
|
||||
|
||||
## Usage
|
||||
```
|
||||
|
@ -20,7 +20,7 @@ influx config [command]
|
|||
## Subcommands
|
||||
| Subcommand | Description |
|
||||
|:---- |:----------- |
|
||||
| [create](/v2.0/reference/cli/influx/config/create) | Create a new connection to include in the configuration (`config`) file (by default, at `~/.influxdbv2/config`).
|
||||
| [create](/v2.0/reference/cli/influx/config/create) | Create a new connection configuration to include in the configuration (`config`) file (by default, at `~/.influxdbv2/config`).
|
||||
| [list](/v2.0/reference/cli/influx/config/create) | List connection configurations.
|
||||
| [delete](/v2.0/reference/cli/influx/config/delete | Delete a connection configuration.
|
||||
| [set](/v2.0/reference/cli/influx/config/set) | Set or update a connection configuration.
|
||||
|
|
|
@ -8,7 +8,7 @@ menu:
|
|||
weight: 201
|
||||
---
|
||||
|
||||
The `influx config create` command creates a new InfluxDB connection configuration in the `config` file (by default, stored at `~/.influxdbv2/config`).
|
||||
The `influx config create` command creates a new InfluxDB connection configuration and stores it in the `config` file (by default, stored at `~/.influxdbv2/config`).
|
||||
|
||||
## Usage
|
||||
```
|
||||
|
|
|
@ -8,7 +8,7 @@ menu:
|
|||
weight: 201
|
||||
---
|
||||
|
||||
The `influx config list` command lists all InfluxDB connection configurations in the `config` file (by default, stored at `~/.influxdbv2/config`). Each connection configuration includes a url, authentication token, and active setting. By default, the list includes an asterisk next to the active connection configuration. InfluxDB reads the token from the active connection configuration, so you don't have to manually enter a token to log into InfluxDB.
|
||||
The `influx config list` command lists all InfluxDB connection configurations in the `config` file (by default, stored at `~/.influxdbv2/config`). Each connection configuration includes a url, authentication token, and active setting. An asterisk (`*`) indicates the active configuration.
|
||||
|
||||
## Usage
|
||||
```
|
||||
|
|
|
@ -17,7 +17,7 @@ influx config update [flags]
|
|||
|
||||
#### Aliases
|
||||
|
||||
`set` , `update`
|
||||
`set` , `update` TX
|
||||
|
||||
## Flags
|
||||
| Flag | Description | Input type |
|
||||
|
|
Loading…
Reference in New Issue