Documentation

Install InfluxDB 3 Core

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.

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

To install InfluxDB 3 Core on Linux or macOS, download and run the quick installer script for InfluxDB 3 Core–for example, using curl to download the script:

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 for built-in systemd sandboxing, or Docker with your own container security configuration.

For detailed security options, see Manage security.

Download and install the latest build artifacts

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

macOS binaries

Pull the Docker image

Run the following command to pull the influxdb:3-core image, available for x86_64 (AMD64) and ARM64 architectures:

docker pull influxdb:3-core

Docker automatically pulls the appropriate image for your system architecture.

Pull for a specific system architecture

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.

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

DEB-based systems

RPM-based systems

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:

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.

To start the database, enter the following commands:

# Start the service
systemctl start influxdb3-core

# View status
systemctl status influxdb3-core

# View logs
journalctl --unit influxdb3-core
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:

# 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:

influxdb3 --version

If your system can’t locate influxdb3 following a quick install, source the configuration file (for example, .bashrc, .zshrc) for your shell–for example:

source ~/.zshrc

Was this page helpful?

Thank you for your feedback!


New in InfluxDB 3.8

Key enhancements in InfluxDB 3.8 and the InfluxDB 3 Explorer 1.6.

See the Blog Post

InfluxDB 3.8 is now available for both Core and Enterprise, alongside the 1.6 release of the InfluxDB 3 Explorer UI. This release is focused on operational maturity and making InfluxDB easier to deploy, manage, and run reliably in production.

For more information, check out:

InfluxDB Docker latest tag changing to InfluxDB 3 Core

On February 3, 2026, the latest tag for InfluxDB Docker images will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments.

If using Docker to install and run InfluxDB, the latest tag will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments. For example, if using Docker to run InfluxDB v2, replace the latest version tag with a specific version tag in your Docker pull command–for example:

docker pull influxdb:2