InfluxData - Package Repository


Filename Last Modified Size
.. - -
4fd9e351b38685fb4dae4e2121033f397bea54c185cbd402545a0d08e5fab4f0-primary.sqlite.bz2 2025-10-21 12:34:09+00:00 75295
65773554db4a9e92a2b5e52b8a67022e8332ed4936e2d03943351e2f43d60661-other.xml.gz 2025-10-21 12:34:09+00:00 12227
929667cd2cc86a835ee63aaebb57bf1805df62530c5988dba59cef1805843652-filelists.sqlite.bz2 2025-10-21 12:34:09+00:00 44974
a45c634576b335c73f4a2c1d9d4e0b1910065fb2b2d65203ebe37c18aba4a21f-filelists.xml.gz 2025-10-21 12:34:09+00:00 16277
cbf6bc68f17f1f57272bc96180debbcba8774dd38238ba08f4bd9d3acca2a3b5-other.sqlite.bz2 2025-10-21 12:34:09+00:00 16707
fc62a13e00386988cf3b85f05d75259619f4b5a7bce9fa8818c7c2feb927b0a7-primary.xml.gz 2025-10-21 12:34:09+00:00 29657
repomd.xml 2025-10-21 12:34:09+00:00 3088

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