influx - InfluxDB command line interface
The influx
command line interface (CLI) includes commands to manage many aspects of InfluxDB,
including buckets, organizations, users, tasks, etc.
InfluxDB OSS v2 and influx CLI versions
Beginning with InfluxDB 2.1, the influx
CLI is packaged and versioned separately
from InfluxDB.
InfluxDB and influx
CLI versions may differ, but compatibility is noted for each command.
Download and install the influx CLI
Download the influx CLI package.
Download the
influx
CLI package from your browser or from the command line.Download from your browser
influx CLI v2.7.5 (amd64) influx CLI v2.7.5 (arm)
Download from the command line
# amd64 curl -O \ https://dl.influxdata.com/influxdb/releases/influxdb2-client-2.7.5-linux-amd64.tar.gz
# arm curl -O \ https://dl.influxdata.com/influxdb/releases/influxdb2-client-2.7.5-linux-arm64.tar.gz \
Unpackage the downloaded package.
Note: The following commands are examples. Adjust the filenames, paths, and utilities if necessary.
# amd64 tar xvzf influxdb2-client-2.7.5-linux-amd64.tar.gz
# arm tar xvzf influxdb2-client-2.7.5-linux-arm64.tar.gz
(Optional) Place the unpackaged
influx
executable in your system$PATH
.sudo cp ./influx /usr/local/bin/
If you do not move the
influx
binary into your$PATH
, prefix the executable./
to run it in place.
Provide required authentication credentials
To avoid having to pass your InfluxDB host, API token, and organization
with each command, store them in an influx
CLI configuration (config).
influx
commands that require these credentials automatically retrieve these
credentials from the active config.
Use the influx config create
command
to create an influx
CLI config and set it as active:
influx config create --config-name CONFIG_NAME \
--host-url http://localhost:8086 \
--org ORG_NAME \
--token API_TOKEN \
--active
For more information about managing CLI configurations, see the
influx config
documentation.
Credential precedence
Provide credentials using any of the following supported methods.
The influx
CLI uses the following precedence when retrieving credentials:
- Command line flags (
--host
,--org -o
,--token -t
) - Environment variables (
INFLUX_HOST
,INFLUX_ORG
,INFLUX_TOKEN
) - CLI configuration file
Command line flags override environment variables, which override configuration file values.
Usage
influx [flags]
influx [command]
Commands
Command | Description |
---|---|
apply | Apply an InfluxDB template |
auth | API token management commands |
backup | Back up data (InfluxDB OSS only) |
bucket | Bucket management commands |
bucket-schema | Manage InfluxDB bucket schemas (InfluxDB Cloud only) |
completion | Generate completion scripts |
config | Configuration management commands |
dashboards | List dashboards |
delete | Delete points from InfluxDB |
export | Export resources as a template |
help | Help about any command |
org | Organization management commands |
ping | Check the InfluxDB /health endpoint |
query | Execute a Flux query |
restore | Restore backup data (InfluxDB OSS only) |
scripts | Scripts management commands (InfluxDB Cloud only) |
secret | Manage secrets |
setup | Create default username, password, org, bucket, etc. (InfluxDB OSS only) |
stacks | Manage InfluxDB stacks |
task | Task management commands |
telegrafs | Telegraf configuration management commands |
template | Summarize and validate an InfluxDB template |
user | User management commands |
v1 | Work with the v1 compatibility API |
version | Print the influx CLI version |
write | Write points to InfluxDB |
Flags
Flag | Description | |
---|---|---|
-h | --help | Help for the influx command |
Flag patterns and conventions
The influx
CLI uses the following patterns and conventions:
Mapped environment variables
influx
CLI flags mapped to environment variables are listed in the Mapped to
column of the Flags table in each command documentation.
Mapped flags inherit the value of the environment variable.
To override environment variables, set the flag explicitly in your command.
Shorthand and longhand flags
Many influx
CLI flags support both shorthand and longhand forms.
- shorthand: a shorthand flag begins with a single hyphen followed by a single letter (for example:
-c
). - longhand: a longhand flag starts with two hyphens followed by a multi-letter,
hyphen-spaced flag name (for example:
--active-config
).
Commands can use both shorthand and longhand flags in a single execution.
Flag input types
influx
CLI flag input types are listed in each the table of flags for each command.
Flags support the following input types:
string
Text string, but the flag can be used only once per command execution.
stringArray
Single text string, but the flag can be used multiple times per command execution.
integer
Sequence of digits representing an integer value.
duration
Length of time represented by an integer and a duration unit
(1ns
, 1us
, 1µs
, 1ms
, 1s
, 1m
, 1h
, 1d
, 1w
).
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.