File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
content/shared/influxdb3-get-started Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -368,17 +368,17 @@ You can obtain a license key from the [InfluxData pricing page](https://www.infl
368
368
369
369
### Start InfluxDB 3 Enterprise with your license
370
370
371
- To start InfluxDB 3 Enterprise in a Docker container, set the ` INFLUX_LICENSE_KEY ` environment variable:
371
+ Use the following ` docker run ` command to start an InfluxDB 3 Enterprise container using your email address to activate a trial or at-home license.
372
372
373
- {{% code-placeholders "YOUR_LICENSE_KEY " %}}
373
+ {{% code-placeholders "YOUR_EMAIL_ADDRESS " %}}
374
374
375
375
``` bash
376
376
docker run -d --name influxdb3-enterprise \
377
- -v $PWD /data:/var/lib/influxdb3 \
378
- -v $PWD /plugins:/plugins \
379
- -p 8086:8086 \
380
- -e INFLUX_LICENSE_KEY=YOUR_LICENSE_KEY \
381
- influxdb: enterprise \
377
+ -v " $PWD /data:/var/lib/influxdb3" \
378
+ -v " $PWD /plugins:/plugins" \
379
+ -p 8181:8181 \
380
+ -e INFLUXDB3_ENTERPRISE_LICENSE_EMAIL=YOUR_EMAIL_ADDRESS \
381
+ quay.io/ influxdb/influxdb3- enterprise:latest \
382
382
serve \
383
383
--cluster-id cluster1 \
384
384
--node-id node1 \
@@ -389,7 +389,7 @@ docker run -d --name influxdb3-enterprise \
389
389
390
390
{{% /code-placeholders %}}
391
391
392
- - Replace ` YOUR_LICENSE_KEY ` with your actual InfluxDB 3 Enterprise license key .
392
+ - Replace ` YOUR_EMAIL_ADDRESS ` with the email you want to associate with the license .
393
393
394
394
Once the Docker container is running, create an admin token to authenticate requests:
395
395
You can’t perform that action at this time.
0 commit comments