1.7 KiB
title | seotitle | description | aliases | menu | weight | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Create a token | Create an authentication token in InfluxDB | Create an authentication token in InfluxDB using the InfluxDB UI or the `influx` CLI. |
|
|
201 |
Create authentication tokens using the InfluxDB user interface (UI) or the influx
command line interface (CLI).
Create a token in the InfluxDB UI
-
Click the Load Data icon in the navigation bar.
{{< nav-icon "disks" >}}
-
Click Tokens.
-
Click the + Generate dropdown in the upper right and select a token type (Read/Write Token or All Access Token).
-
In the window that appears, enter a description for your token in the Description field.
-
If you're generating a read/write token:
- Search for and select buckets to read from in the Read pane.
- Search for and select buckets to write to in the Write pane.
-
Click Save.
Create a token using the influx CLI
Use the influx auth create
command to create a token.
Include flags with the command to grant specific permissions to the token.
See the available flags.
# Pattern
influx auth create -o <org-name> [permission-flags]
# Example
influx auth create -o my-org \
--read-buckets 03a2bbf46309a000 03ace3a87c269000 \
--read-dashboards \
--read-tasks \
--read-telegrafs \
--read-user
Filtering options such as filtering by authorization ID, username, or user ID are available.
See the influx auth find
documentation
for information about other available flags.