Openhabian-config Influx and grafana, incorrect Influxdb repo

  • Platform information:
    • Raspberry Pi 3B
    • OS: Openhabian
    • openHAB version: 2.4.0-1 (Release Build)

A new installation of Openhabian from the latest image as of 11/08/2019, I tried to install Influx and Grafana from openhabian-config and it failed because influxdb has the wrong repo.
Here’s what I had to do.

sudo apt update
sudo apt install -y gnupg2 curl wget
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
echo "deb https://repos.influxdata.com/debian buster stable" | sudo tee /etc/apt/sources.list.d/influxdb.list

sudo apt update
sudo apt install -y influxdb

I then had to use this guide to create the database, users and permissions.

2 Likes