Cronograf Install: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „=Install curl= *apt install curl -y =Add the influxdata Key= *sudo curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add - =Add the influxdata…“) |
(kein Unterschied)
|
Aktuelle Version vom 11. Oktober 2019, 08:07 Uhr
Install curl
- apt install curl -y
Add the influxdata Key
- sudo curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
Add the influxdata repository
Ubuntu
- source /etc/lsb-release
Debian
- export DISTRIB_ID=debian
- export DISTRIB_CODENAME=stretch
Add repo
- echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
Now update the repository and install the 'chronograf' package using the apt command below
- sudo apt update
- sudo apt install chronograf -y