InfluxData - Package Repository


Filename Last Modified Size
.. - -
0e0a0d4ee3704828af2d8ec4f352840fde3fe0a562fc12896eb4938c250890b6-other.sqlite.bz2 2026-03-02 18:32:20.272000+00:00 29773
24db95bb29c6445f94cb71ca5d74fec5942422a7d1bd648091fd6d883089c54e-filelists.sqlite.bz2 2026-03-02 18:32:20.175000+00:00 352011
3d58f73cd590327b9eab6a391a62bf18b1c1039f3beb03769c8d5fa14e25d22c-filelists.xml.gz 2026-03-02 18:32:20.068000+00:00 789564
4667cf0ece16cfed94b1569e43f21ffc043ea42ae8b4a95949e97aa7625d7299-filelists.sqlite.bz2 2026-03-02 18:32:20.037000+00:00 337439
4c99bd7e306ce0fdb7ea93a684468368544800c2a86d74ae0c4256d098dcc277-other.sqlite.bz2 2026-03-02 18:32:20.051000+00:00 30292
61ac2a3209d4d505ab21e5ceabc74be8a04e172ab9e0a613d6af621d52fb5367-other.xml.gz 2026-03-02 18:32:20.056000+00:00 22560
6e22c1dbc575184ba6b039f71da07e03e29c7bfcfae835b33ad62711e9a6c4b6-primary.xml.gz 2026-03-02 18:32:20.084000+00:00 55589
76176385cf8a639d69a1707db185d15114e014bcc4e89f97ec0fd5780b36f445-primary.sqlite.bz2 2026-03-02 18:32:20.041000+00:00 137665
84f200b1cb36747f1cd498517ac14fedcfc5433080669e4ec1ff6cf43f09cad6-primary.sqlite.bz2 2026-03-02 18:32:20.068000+00:00 137905
b0b8ae9bb7ddc5cf2a80101bb5164ef2cc6301e8b52ce4035e7c81b9e0f9c2b9-primary.xml.gz 2026-03-02 18:32:20.121000+00:00 54961
bb7e8289ecc41875025a6011e2fb8e10de678784be0472f6cc53bac296a32a75-other.xml.gz 2026-03-02 18:32:20.230000+00:00 22219
c897be9cfc0259097a44627ddeb1f0ce7b6cd80ed3d2d4ff464600d4cf59c613-filelists.xml.gz 2026-03-02 18:32:20.315000+00:00 889754
cd7db56ab202887d259d013d306d32f918536a5ec61f281763487feb30b1ee9f-filelists.sqlite.bz2 2026-03-02 18:32:20.268000+00:00 337022
cd90333f4b726a9a0db6dddc13b07f4534f44984c9ee443a7175f99ee73e87c3-other.sqlite.bz2 2026-03-02 18:32:20.228000+00:00 29921
d803dca52f80d8934b4bd9265929b86a16488dfd54dbf79b22fb5584127d22ca-filelists.xml.gz 2026-03-02 18:32:20.308000+00:00 789516
dc3ae9e9b8d0d7f5f957ca88dc52f782a06333cd24e71dbfc3bf444fdd9f0a08-primary.xml.gz 2026-03-02 18:32:20.237000+00:00 54840
e5c9eec82fd478e962ca4d825e67a0fdd821400164787f3854576c849a67d7c5-primary.sqlite.bz2 2026-03-02 18:32:20.345000+00:00 140922
f9e4007782a291710d816f400bc52d21589781f4e15d56b1edced2448b3b7dea-other.xml.gz 2026-03-02 18:32:20.375000+00:00 22274
repomd.xml 2026-03-02 18:32:20.449000+00:00 3095

Instructions

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

GPG Keys

NOTICE 2026-01-06: InfluxData updated its signing subkey. For details, see our blog post.

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 a very old 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-exp2029.key is required for use.

Fingerprint verification with old GnuPG versions

gpg --show-keys is only supported in GnuPG 2.2.8 and later. To verify the fingerprint with older releases (this assumes also having to use the compat key):

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