InfluxData - Package Repository


Filename Last Modified Size
.. - -
076dfb7e6906e6ebdd1eb7fa6c921272a8e8a1e7a6c8046a928afd5ae9ce0017-other.sqlite.bz2 2026-03-02 18:49:53.421000+00:00 6059
279d1e9d00a821a50993a4da0471b00ca25d17d0d1ef25241a6b994921b33b5c-other.sqlite.bz2 2026-03-02 18:49:53.399000+00:00 6126
29a82d297b9ac09c314829c4596a4055b9ea2524b9262f2974cfd597a7e1bfe2-primary.xml.gz 2026-03-02 18:49:53.498000+00:00 8250
324fa9bbb317f717ae9b041e6fa60a1431987600d75a5a6b98031158a4251697-other.xml.gz 2026-03-02 18:49:53.424000+00:00 3817
3c452ffd50bc03a3af61a418a0170d6bbeeabfbec653dcd0008591d5bd8d407c-primary.sqlite.bz2 2026-03-02 18:49:53.429000+00:00 20767
4c733d5db8e644e6a29cce6bb4c4fd7e299f3da431c790f19bfeab5b296bd457-filelists.xml.gz 2026-03-02 18:49:53.666000+00:00 3929
5b5407b02a579f769ec25daaeac80f6330708953c0226cb7300b6936a36f83e3-primary.sqlite.bz2 2026-03-02 18:49:53.428000+00:00 20555
65ffb3bbfcfd1fbabc5564b262a77d141b69a93786c6e5d3f1bff6458c8a734a-primary.sqlite.bz2 2026-03-02 18:49:53.462000+00:00 21035
8400a7bca803b6baba329fb12660f484a090ddb65521ed51b31d104ef9175a65-primary.xml.gz 2026-03-02 18:49:53.407000+00:00 8477
9a7d730e53689ea3dca7600f0402a8571c39e5ac80d2dc94eddfb999fb4d2cdc-filelists.sqlite.bz2 2026-03-02 18:49:53.442000+00:00 12606
a9331d30f1731ffc21d9bccc4ad7488bbf66e978d183e5fdb86446336d2c87ad-other.xml.gz 2026-03-02 18:49:53.566000+00:00 3922
ae3a5254cf226e7069c91bd9743a136078d275968a00dd01065924e6cd4e9604-filelists.xml.gz 2026-03-02 18:49:53.589000+00:00 3975
be4fb106c54263241fe18085dfcd16ad21864a9efde3fed90a99ab0e99c7fece-other.xml.gz 2026-03-02 18:49:53.690000+00:00 3871
c52a2350e26c58970bf1fe76eeebda02beb0df5c49f72f58b4d07ccf2f4570a7-filelists.xml.gz 2026-03-02 18:49:53.648000+00:00 4022
ee8a459253d9740c0f968d56dc47290aeb8462c2357c438aaf4fa70752590c24-filelists.sqlite.bz2 2026-03-02 18:49:53.637000+00:00 12477
ef6dd9a746789645807f84508636a40c670d285f87d83fb6fe3542564e1ead7a-other.sqlite.bz2 2026-03-02 18:49:53.714000+00:00 5979
f35ac1bc891069786516640f17c7956ff9fe155a424a5b565e789ae1a1653dbb-primary.xml.gz 2026-03-02 18:49:53.913000+00:00 8363
f90d895a91a3e2d46f3d4566615cb37636d935f5ec687cc51e966edd3bb15df7-filelists.sqlite.bz2 2026-03-02 18:49:53.635000+00:00 12649
repomd.xml 2026-03-02 18:49:53.773000+00:00 3082

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