InfluxData - Package Repository


Filename Last Modified Size
.. - -
3795605eeca13ef5ab3ce6685fb49c272dcf9b8c87cae0b5fbbd8aa96fc942ea-filelists.xml.gz 2025-07-09 14:47:42+00:00 217730
576f88310751c507752a705d9e13c0422bf988625dae56061d41646b5df2aae2-other.sqlite.bz2 2025-07-09 14:47:42+00:00 24765
80fe36eb4474ea0352a7ab54b87abc1355849f610c17d82e8fa230ba0ec0c344-primary.sqlite.bz2 2025-07-09 14:47:42+00:00 112015
968cb3d03e37c750e8ede2baed9ce8acf2279a10f052196506d7a19e856a220c-primary.xml.gz 2025-07-09 14:47:42+00:00 46378
b59d65456046bb05757313a74c0d6a8b0b22b5a326bf996ea53213d2814a799f-other.xml.gz 2025-07-09 14:47:42+00:00 18513
f49cc42d7da91cb84425a0ba0430cf93b37514a8daa596387ecb99ce6435bb84-filelists.sqlite.bz2 2025-07-09 14:47:42+00:00 157741
repomd.xml 2025-07-09 14:47:42+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