Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.42 KB | None | 0 0
  1. #!/bin/bash
  2. curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
  3. echo "deb https://repos.influxdata.com/debian stretch stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
  4. apt update
  5. apt install influxdb
  6. systemctl enable influxdb --now
  7. wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana_5.2.1_armhf.deb
  8. dpkg -i grafana_5.2.0-beta1_armhf.deb
  9. systemctl enable grafana-server --now
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement