docs-v2/content/influxdb3/enterprise/install.md

3.9 KiB

title description menu weight influxdb3/enterprise/tags alt_links
Install InfluxDB 3 Enterprise Download and install InfluxDB 3 Enterprise.
influxdb3_enterprise
name
Install InfluxDB 3 Enterprise
2
install
v1
/influxdb/v1/introduction/install/

System Requirements

Operating system

InfluxDB 3 Enterprise runs on Linux, macOS, and Windows.

Object storage

A key feature of InfluxDB 3 is its use of object storage to store time series data in Apache Parquet format. You can choose to store these files on your local file system, however, we recommend using an object store for the best overall performance. {{< product-name >}} natively supports Amazon S3, Azure Blob Storage, and Google Cloud Storage. You can also use many local object storage implementations that provide an S3-compatible API, such as Minio.

Quick install

  1. Use the following command to download and install the appropriate {{< product-name >}} package on your local machine:

    curl -O https://www.influxdata.com/d/install_influxdb3.sh && sh install_influxdb3.sh enterprise
    
  2. Ensure installation completed successfully:

    influxdb3 --version
    

[!Note]

influxdb3 not found

If it your system can't locate your influxdb3 binary, source your current shell configuration file (.bashrc, .zshrc, etc.).

{{< code-tabs-wrapper >}} {{% code-tabs %}} .bashrc .zshrc {{% /code-tabs %}} {{% code-tab-content %}}

source ~/.bashrc

{{% /code-tab-content %}} {{% code-tab-content %}}

source ~/.zshrc

{{% /code-tab-content %}} {{< /code-tabs-wrapper >}}

Download InfluxDB 3 Enterprise binaries

{{< tabs-wrapper >}} {{% tabs %}} Linux macOS Windows {{% /tabs %}} {{% tab-content %}}

{{% /tab-content %}} {{% tab-content %}}

InfluxDB 3 Enterprise • macOS (Silicon)

[!Note] macOS Intel builds are coming soon.

{{% /tab-content %}} {{% tab-content %}}

InfluxDB 3 Enterprise • Windows (x86)

{{% /tab-content %}} {{< /tabs-wrapper >}}

Docker image

Use the {{< product-name >}} Docker image to deploy {{< product-name >}} in a Docker container.

docker pull quay.io/influxdb/influxdb3-enterprise:latest

{{< page-nav next="/influxdb3/enterprise/get-started/" nextText="Get started with InfluxDB 3 Enterprise" >}}