InfluxData - Package Repository


Filename Last Modified Size
.. - -
11be954b239e2a93719c8ae0b2c41a36f56a761eeafb8a111fb7bda5f6836512-filelists.sqlite.bz2 2025-07-15 00:50:07+00:00 178727
3b4c11e2bca428a93fed2e4123c42f2be4e9b6ac891254d84cdc1a195f193325-other.xml.gz 2025-07-15 00:50:07+00:00 18695
6dcecc0f46cd6d11c4abff99005c64ee8da930db2e3746e72593511834133706-primary.sqlite.bz2 2025-07-15 00:50:07+00:00 115059
a9bafd79a8f10829395fbb5f5b1affff55767a2b879ff3c0a9fddf03129086ae-filelists.xml.gz 2025-07-15 00:50:07+00:00 314019
e231a29bd6121d2404d45649f34c93d4eeb1d704a043c67b6d27a58ed6a38473-primary.xml.gz 2025-07-15 00:50:07+00:00 46903
f4c3ef28c7bbcb6edc8e12d6b22ebc9e02b243eaff6eb1cfce70a6019539d356-other.sqlite.bz2 2025-07-15 00:50:07+00:00 24997
repomd.xml 2025-07-15 00:50:07+00:00 3093

Instructions

This package repository contains RPM and DEB builds of the InfluxData products, including InfluxDB, Telegraf, Chronograf, and Kapacitor. Below are instructions on how to add this package repo to both RPM and DEB based systems.

GPG Keys

The key used for package signing uses a primary key with signing subkeys that have an expiration. When needed, new signing subkeys with expiry are added to the GPG key. In this manner, users may consistently fetch the GPG key and verify the primary key's fingerprint to ensure the correct key is being used. This approach allows for a consistent and secure user experience even in the event of key rotations.

Users should always use the influxdata-archive.key key unless using an older distribution that doesn't have support for verifying subkeys in APT and RPM (e.g. CentOS/RHEL 7, Ubuntu 18.04 LTS, or Debian Buster), where the influxdata-archive_compat.key is required for use.

DEB Repository

For DEB-based platforms (e.g. Ubuntu, Debian):


  $ wget -q 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 /etc/apt/trusted.gpg.d/influxdata-archive.gpg > /dev/null
  $ echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main' | sudo tee /etc/apt/sources.list.d/influxdata.list
    

RPM Repository

For RPM-based platforms (e.g. RHEL, CentOS):


  $ 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 = https://repos.influxdata.com/influxdata-archive.key
  EOF