Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On the Influx/Grafana server:

 AS ROOT:

Configure Influxdb repos and install it:

Code Block
$ curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -

This will create a file called “/etc/apt/sources.list.d/influxdb.list” if it worked.

...

Code Block
$ source /etc/lsb-release
$ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list

Install Influx

Code Block
$ sudo apt-get update && sudo apt-get install influxdb

 

...