InfluxData - Package Repository


Filename Last Modified Size
.. - -
34c1192ed36ef7a1101603fd04424792dc58b5cb16eb99138bffe925b91c532c-filelists.xml.gz 2025-08-18 19:47:40+00:00 16082
400121baf8a81d0dc43e85e865dfd9fcb01f9f319cfb6902fb3c6b3095be1714-other.xml.gz 2025-08-18 19:47:40+00:00 12008
4a3fe13341f1907b64310107fffc6655bf995b94ea425a7389bc0b2e303d0c55-other.sqlite.bz2 2025-08-18 19:47:40+00:00 16455
6f7169e2d885f8ae785395bd352690625d2ed3ceb992a3666c79c54b29b967c3-primary.sqlite.bz2 2025-08-18 19:47:40+00:00 74502
706449860e339c270639eb1ee70fa48b161f860dab11e0e27670ee5ee4f140bc-primary.xml.gz 2025-08-18 19:47:40+00:00 29236
b5168a93fd4cf8060491c6e7407d88a47e4059a95c05d9937608deaf9a6b7945-filelists.sqlite.bz2 2025-08-18 19:47:40+00:00 44646
repomd.xml 2025-08-18 19:47:41+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