Merge branch 'master' into 5950-reference-influxdb3-processing-engine

pull/5958/head
Jameelah Mercer 2025-04-23 13:59:57 -07:00 committed by GitHub
commit eba605c273
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 9 deletions

View File

@ -92,14 +92,14 @@ Download and install the {{% product-name %}} [Windows (AMD64, x86_64) binary](h
{{% tab-content %}}
<!--------------- BEGIN DOCKER -------------->
The [`influxdb3-core` image](https://quay.io/repository/influxdb/influxdb3-core?tab=tags&tag=latest)
The [`influxdb:3-core` image](https://hub.docker.com/_/influxdb/tags?tag=3-core&name=3-core)
is available for x86_64 (AMD64) and ARM64 architectures.
Pull the image:
<!--pytest.mark.skip-->
```bash
docker pull quay.io/influxdb/influxdb3-core:latest
docker pull influxdb:3-core
```
##### InfluxDB 3 Explorer -- Query Interface (Beta)
@ -191,7 +191,7 @@ To run the [Docker image](/influxdb3/core/install/#docker-image) and persist dat
# Provide the mount path
docker run -it \
-v /path/on/host:/path/in/container \
quay.io/influxdb/influxdb3-core:latest serve \
influxdb:3-core influxdb3 serve \
--node-id my_host \
--object-store file \
--data-dir /path/in/container
@ -256,6 +256,10 @@ To create an admin token, use the `influxdb3 create token --admin` subcommand--f
influxdb3 create token --admin \
--host http://{{< influxdb/host >}}
```
```bash
# With Docker -- In a new terminal, run:
docker exec -it CONTAINER_NAME influxdb3 create token --admin
```
The command returns a token string that you can use to authenticate CLI commands and API requests.

View File

@ -91,14 +91,14 @@ Download and install the {{% product-name %}} [Windows (AMD64, x86_64) binary](h
{{% tab-content %}}
<!--------------- BEGIN DOCKER -------------->
The [`influxdb3-enterprise` image](https://quay.io/repository/influxdb/influxdb3-enterprise?tab=tags&tag=latest)
The [`influxdb:3-enterprise` image](https://hub.docker.com/_/influxdb/tags?tag=3-core&name=3-enterprise)
is available for x86_64 (AMD64) and ARM64 architectures.
Pull the image:
<!--pytest.mark.skip-->
```bash
docker pull quay.io/influxdb/influxdb3-enterprise:latest
docker pull influxdb:3-enterprise
```
##### InfluxDB 3 Explorer -- Query Interface (beta)
@ -194,7 +194,7 @@ To run the [Docker image](/influxdb3/enterprise/install/#docker-image) and persi
# Provide the mount path
docker run -it \
-v /path/on/host:/path/in/container \
quay.io/influxdb/influxdb3-enterprise:latest serve \
influxdb:3-enterprise influxdb3 serve \
--node-id my_host \
--cluster-id my_cluster \
--object-store file \
@ -236,10 +236,15 @@ influxdb3 serve --help
#### Licensing
When starting {{% product-name %}} for the first time, it prompts you to enter an email address for verification. You will receive an email with a verification link.
Upon verification, the license creation, retrieval, and application are automated.
When first starting a new instance, InfluxDB prompts you to select a license type.
_During the beta period, licenses are valid until May 7, 2025._
InfluxDB 3 Enterprise licenses authorize the use of the InfluxDB 3 Enterprise software and apply to a single cluster. Licenses are primarily based on the number of CPUs InfluxDB can use, but there are other limitations depending on the license type. The following InfluxDB 3 Enterprise license types are available:
- **Trial**: 30-day trial license with full access to InfluxDB 3 Enterprise capabilities.
- **At-Home**: For at-home hobbyist use with limited access to InfluxDB 3 Enterprise capabilities.
- **Commercial**: Commercial license with full access to InfluxDB 3 Enterprise capabilities.
You can learn more on managing your InfluxDB 3 Enterprise license on the [Manage your license](https://docs.influxdata.com/influxdb3/enterprise/admin/license/)page.
### Authentication and authorization
@ -281,6 +286,10 @@ To create an admin token, use the `influxdb3 create token --admin` subcommand--f
influxdb3 create token --admin \
--host http://{{< influxdb/host >}}
```
```bash
# With Docker -- In a new terminal, run:
docker exec -it CONTAINER_NAME influxdb3 create token --admin
```
The command returns a token string that you can use to authenticate CLI commands and API requests.