InfluxDB Installation
From r00tedvw.com wiki
(Difference between revisions)
(Created page with "==Ubuntu Installation== ===Add Repo=== <nowiki>~$ curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add - ~$ source /etc/lsb-release ~$ echo "deb https://repo...") |
|||
Line 4: | Line 4: | ||
~$ source /etc/lsb-release | ~$ source /etc/lsb-release | ||
~$ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list</nowiki> | ~$ echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list</nowiki> | ||
+ | ===Install InfluxDB=== | ||
+ | <nowiki>~$ sudo apt-get update && sudo apt-get install influxdb -y | ||
+ | ~$ sudo service influxdb start</nowiki> |
Revision as of 15:23, 30 June 2016
Ubuntu Installation
Add Repo
~$ curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add - ~$ 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 InfluxDB
~$ sudo apt-get update && sudo apt-get install influxdb -y ~$ sudo service influxdb start