---
title: Install InfluxDB 3 Core
description: Download and install InfluxDB 3 Core.
url: https://docs.influxdata.com/influxdb3/core/install/
estimated_tokens: 5193
product: InfluxDB 3 Core
version: core
---

# Install InfluxDB 3 Core

#### Upgrade to InfluxDB 3 Enterprise

If you want to upgrade from InfluxDB 3 Core to InfluxDB 3 Enterprise for features like high availability, read replicas, and historical query capability, see [Upgrade to Enterprise](/influxdb3/core/admin/upgrade-to-enterprise/).

-   [System Requirements](#system-requirements)
-   [Install](#install)
    -   [Quick install for Linux and macOS](#quick-install-for-linux-and-macos)
    -   [Download and install the latest build artifacts](#download-and-install-the-latest-build-artifacts)
    -   [Pull the Docker image](#pull-the-docker-image)
    -   [Linux DEB or RPM](#linux-deb-or-rpm)
        -   [TOML configuration (Linux)](#toml-configuration-linux)
        -   [Run as a system service (Linux)](#run-as-a-system-service-linux)
    -   [Verify the installation](#verify-the-installation)

## System Requirements

#### Operating system

InfluxDB 3 Core 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. Performance on your local filesystem will likely be better, but object storage has the advantage of not running out of space and being accessible by other systems over the network. InfluxDB 3 Core 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](https://min.io/).

## Install

InfluxDB 3 Core runs on **Linux**, **macOS**, and **Windows**.

Choose one of the following methods to install InfluxDB 3 Core:

-   [Quick install for Linux and macOS](#quick-install-for-linux-and-macos)
-   [Download and install the latest build artifacts](#download-and-install-the-latest-build-artifacts)
-   [Pull the Docker image](#pull-the-docker-image)
-   [Linux DEB or RPM](#linux-deb-or-rpm)

### Quick install for Linux and macOS

To install InfluxDB 3 Core on **Linux** or **macOS**, download and run the quick installer script for InfluxDB 3 Core–for example, using [`curl`](https://curl.se/) to download the script:

```bash
curl -O https://www.influxdata.com/d/install_influxdb3.sh \
&& sh install_influxdb3.sh 
```

The quick installer script is updated with each InfluxDB 3 Core release, so it always installs the latest version.

#### Production deployment

For production deployments, use [Linux DEB or RPM](#linux-deb-or-rpm) for built-in systemd sandboxing, or [Docker](#pull-the-docker-image) with your own container security configuration.

For detailed security options, see [Manage security](/influxdb3/core/admin/security/).

### Download and install the latest build artifacts

You can also download and install InfluxDB 3 Core build artifacts directly:

[](#linux-binaries)

Linux binaries

-   [Linux | AMD64 (x86\_64) | GNU](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2_linux_amd64.tar.gz) • [sha256](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2_linux_amd64.tar.gz.sha256)
-   [Linux | ARM64 (AArch64) | GNU](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2_linux_arm64.tar.gz) • [sha256](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2_linux_arm64.tar.gz.sha256)

[](#macos-binaries)

macOS binaries

-   [macOS | Silicon (ARM64)](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2_darwin_arm64.tar.gz) • [sha256](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2_darwin_arm64.tar.gz.sha256)

macOS Intel builds are coming soon.

[](#windows-binaries)

Windows binaries

-   [Windows (AMD64, x86\_64) binary](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2-windows_amd64.zip) • [sha256](https://dl.influxdata.com/influxdb/releases/influxdb3-core-3.9.2-windows_amd64.zip.sha256)

### Pull the Docker image

Run the following command to pull the [`influxdb:3-core` image](https://hub.docker.com/_/influxdb/tags?tag=3-core&name=3-core), available for x86\_64 (AMD64) and ARM64 architectures:

```bash
docker pull influxdb:3-core
```

Docker automatically pulls the appropriate image for your system architecture.

[](#pull-for-a-specific-system-architecture)

Pull for a specific system architecture

To specify the system architecture, use platform-specific tags–for example:

```bash
# For x86_64/AMD64
docker pull \
--platform linux/amd64 \
influxdb:3-core
```

```bash
# For ARM64
docker pull \
--platform linux/arm64 \
influxdb:3-core
```

### Linux DEB or RPM

When installed via DEB or RPM on a `systemd`\-enabled system, InfluxDB 3 Core runs in a sandboxed environment. The included `systemd` unit file configures the environment to provide security isolation for typical deployments. For more information, see [Manage security](/influxdb3/core/admin/security/).

DEB and RPM installation is **recommended for non-Docker production deployments** due to built-in `systemd` sandboxing.

[](#deb-based-systems)

DEB-based systems

Use `apt-get` to install InfluxDB 3 Core from the InfluxData repository:

```bash
curl --silent --location -O https://repos.influxdata.com/influxdata-archive.key
gpg --show-keys --with-fingerprint --with-colons ./influxdata-archive.key 2>&1 \
| grep -q '^fpr:\+24C975CBA61A024EE1B631787C3D57159FC2F927:$' \
&& cat influxdata-archive.key \
| gpg --dearmor \
| sudo tee /usr/share/keyrings/influxdata-archive.gpg > /dev/null \
&& echo 'deb [signed-by=/usr/share/keyrings/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main' \
| sudo tee /etc/apt/sources.list.d/influxdata.list
sudo apt-get update && sudo apt-get install influxdb3-core
```

[](#rpm-based-systems)

RPM-based systems

Use `yum` to install InfluxDB 3 Core from the InfluxData repository:

```bash
curl --silent --location -O https://repos.influxdata.com/influxdata-archive.key
test -d /usr/share/influxdata-archive-keyring/keyrings || sudo mkdir -p /usr/share/influxdata-archive-keyring/keyrings
gpg --show-keys --with-fingerprint --with-colons ./influxdata-archive.key 2>&1 \
| grep -q '^fpr:\+24C975CBA61A024EE1B631787C3D57159FC2F927:$' \
&& sudo cp ./influxdata-archive.key /usr/share/influxdata-archive-keyring/keyrings/influxdata-archive.asc \
&& cat <<EOF | sudo tee /etc/yum.repos.d/influxdata.repo
[influxdata]
name = InfluxData Repository - Stable
baseurl = https://repos.influxdata.com/stable/\$basearch/main
enabled = 1
gpgcheck = 1
gpgkey = file:///usr/share/influxdata-archive-keyring/keyrings/influxdata-archive.asc
EOF
sudo yum install influxdb3-core
```

#### TOML configuration (Linux)

After you install the DEB or RPM package, the InfluxDB 3 Core TOML configuration file is located at `/etc/influxdb3/influxdb3-core.conf` and contains the following settings:

-   [object-store](/influxdb3/core/reference/config-options/#object-store): `file`
-   [data-dir](/influxdb3/core/reference/config-options/#data-dir): `/var/lib/influxdb3/data`
-   [plugin-dir](/influxdb3/core/reference/config-options/#plugin-dir): `/var/lib/influxdb3/plugins`
-   [node-id](/influxdb3/core/reference/config-options/#node-id): `primary-node`

#### Run as a system service (Linux)

InfluxDB 3 Core DEB and RPM installs include service files for running as a managed system service on Linux:

-   **systemd**: For modern Linux distributions
-   **SysV init**: For legacy system compatibility

##### Run using systemd

On `systemd` systems, the `influxdb3-core` unit file is `enabled` on install, but the unit is not started in order to allow configuration.

###### Start, stop, and restart

The following examples use `sudo` for systems that require elevated privileges. On some systems (such as Amazon Linux or other RHEL-based distributions where you may already be running as root), you can omit `sudo` from the commands.

```bash
# Start the service
sudo systemctl start influxdb3-core

# Stop the service
sudo systemctl stop influxdb3-core

# Restart the service (use after configuration changes)
sudo systemctl restart influxdb3-core
```

###### Check status and logs

```bash
# Check status (sudo to ensure full journal output)
sudo systemctl status influxdb3-core

# Quick state checks (no sudo needed)
systemctl is-enabled influxdb3-core
systemctl is-active  influxdb3-core

# Recent logs
sudo journalctl --unit influxdb3-core -n 200 --no-pager

# Follow logs
sudo journalctl --unit influxdb3-core -f
```

###### Inspect the packaged unit

The packaged unit configures security sandboxing for typical deployments (see [Manage security](/influxdb3/core/admin/security/)). To inspect the packaged unit and its resolved properties:

```bash
# Show the unit file
systemctl cat influxdb3-core

# Show all resolved properties (paths, environment, sandboxing options)
systemctl show influxdb3-core
```

###### Apply configuration changes

Edit the TOML configuration file and restart the service to apply changes:

```bash
sudoedit /etc/influxdb3/influxdb3-core.conf
sudo systemctl restart influxdb3-core
sudo systemctl status  influxdb3-core
sudo journalctl --unit influxdb3-core -n 100 --no-pager
```

`influxdb3 serve` does not support configuration reload; a restart is required after editing the TOML file or changing environment variables.

The TOML file is read by the systemd launcher and converted to `INFLUXDB3_*` environment variables before `influxdb3 serve` runs; CLI flags still override values from the TOML file. For details, see [TOML configuration files](/influxdb3/core/reference/config-options/#toml-configuration-files).

##### Run using SysV

On SysV init systems, `influxdb3-core` is disabled on install and can be enabled by adjusting `/etc/default/influxdb3-core` to contain `ENABLED=yes`.

To start the database, enter the following commands:

```bash
# Start the database
/etc/init.d/influxdb3-core start

# View status
/etc/init.d/influxdb3-core status

# View logs
tail -f /var/lib/influxdb3/influxdb3-core.log
```

### Verify the installation

After installing InfluxDB 3 Core, enter the following command to verify that it installed successfully:

```bash
influxdb3 --version
```

If your system can’t locate `influxdb3` following a [quick install](#quick-install-for-linux-and-macos), `source` the configuration file (for example, `.bashrc`, `.zshrc`) for your shell–for example:

```zsh
source ~/.zshrc
```

[Get started with InfluxDB 3 Core](/influxdb3/core/get-started/)

#### Related

-   [Upgrade InfluxDB 3 Core](/influxdb3/core/admin/upgrade/)

[install](/influxdb3/core/tags/install/)
