Last active
October 22, 2017 17:57
-
-
Save LarsBergqvist/e21b011d5f3ce662439624502921ed22 to your computer and use it in GitHub Desktop.
Installation of InfluxDB on a Raspberry Pi with Jessie/Debian 8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install apt-transport-https | |
curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add - source /etc/os-release | |
echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.list | |
sudo apt-get update | |
sudo apt-get install influxdb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment