InfluxDB

Instalación

Se sugiere instalar la última versión, para lo cual es necesario instalar el repositorio original

wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
  
export DISTRIB_ID=$(lsb_release -si); export DISTRIB_CODENAME=$(lsb_release -sc)
  
echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | tee /etc/apt/sources.list.d/influxdb.list > /dev/null
   
apt-get update && apt-get install influxdb2

Luego se habilita y arranca influxdb:

systemctl enable influxdb
systemctl start influxdb
systemctl status influxdb