content/enterprise_influxdb/v1/guides/authenticate.md
To require valid credentials for cluster access, see "Enable authentication".
Authenticate with the InfluxDB API using one of the following options:
If you authenticate with both basic authentication and the URL query parameters, the user credentials specified in the query parameters take precedence. The following examples demonstrate queries with admin user permissions. To learn about different users types, permissions, and how to manage users, see authorization.
{{% note %}} InfluxDB Enterprise redacts passwords in log output when you enable authentication. {{% /note %}}
curl -G http://localhost:8086/query \
-u todd:password4todd \
--data-urlencode "q=SHOW DATABASES"
Set u as the username and p as the password.
curl -G "http://localhost:8086/query?u=todd&p=password4todd" \
--data-urlencode "q=SHOW DATABASES"
curl -G http://localhost:8086/query \
--data-urlencode "u=todd" \
--data-urlencode "p=password4todd" \
--data-urlencode "q=SHOW DATABASES"
There are three options for authenticating with the CLI:
Use the INFLUX_USERNAME and INFLUX_PASSWORD environment variables to provide
authentication credentials to the influx CLI.
export INFLUX_USERNAME=todd
export INFLUX_PASSWORD=password4todd
echo $INFLUX_USERNAME $INFLUX_PASSWORD
todd password4todd
influx
Connected to http://localhost:8086 version {{< latest-patch >}}
InfluxDB shell {{< latest-patch >}}
Use the -username and -password flags to provide authentication credentials
to the influx CLI.
influx -username todd -password password4todd
Connected to http://localhost:8086 version {{< latest-patch >}}
InfluxDB shell {{< latest-patch >}}
Start the influx shell and run the auth command.
Enter your username and password when prompted.
$ influx
Connected to http://localhost:8086 version {{< latest-patch >}}
InfluxDB shell {{< latest-patch >}}
> auth
username: todd
password:
>
For a more secure alternative to using passwords, include JWT tokens with requests to the InfluxDB API. This is currently only possible through the InfluxDB HTTP API.
Add a shared secret in your InfluxDB Enterprise configuration file.
InfluxDB Enterprise uses the shared secret to encode the JWT signature.
By default, shared-secret is set to an empty string, in which case no JWT authentication takes place.
Add a custom shared secret in your InfluxDB configuration file. The longer the secret string, the more secure it is:
[http]
shared-secret = "my super secret pass phrase"
Alternatively, to avoid keeping your secret phrase as plain text in your InfluxDB configuration file,
set the value with the INFLUXDB_HTTP_SHARED_SECRET environment variable.
Generate your JWT token.
Use an authentication service to generate a secure token using your InfluxDB username, an expiration time, and your shared secret. There are online tools, such as https://jwt.io/, that will do this for you.
The payload (or claims) of the token must be in the following format:
{
"username": "myUserName",
"exp": 1516239022
}
Encode the payload using your shared secret. You can do this with either a JWT library in your own authentication server or by hand at https://jwt.io/.
The generated token follows this format: <header>.<payload>.<signature>
Include the token in HTTP requests.
Include your generated token as part of the Authorization header in HTTP requests:
Authorization: Bearer <myToken>
{{% note %}} Only unexpired tokens will successfully authenticate. Be sure your token has not expired. {{% /note %}}
curl -G "http://localhost:8086/query?db=demodb" \
--data-urlencode "q=SHOW DATABASES" \
--header "Authorization: Bearer <header>.<payload>.<signature>"
Authenticating Telegraf requests to an InfluxDB instance with
authentication enabled requires some additional steps.
In the Telegraf configuration file (/etc/telegraf/telegraf.conf), uncomment
and edit the username and password settings.
###############################################################################
# OUTPUT PLUGINS #
###############################################################################
# ...
[[outputs.influxdb]]
# ...
username = "example-username" # Provide your username
password = "example-password" # Provide your password
# ...
Restart Telegraf and you're all set!