Skip to content

Instantly share code, notes, and snippets.

@ysdede
Created December 22, 2021 19:13
Show Gist options
  • Save ysdede/5467c1ebbe59e2860f1fc273a6712170 to your computer and use it in GitHub Desktop.
Save ysdede/5467c1ebbe59e2860f1fc273a6712170 to your computer and use it in GitHub Desktop.
Install Grafana OSS
sudo apt-get install -y apt-transport-https
sudo apt-get install -y software-properties-common wget
wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -
# Add this repository for stable releases:
echo "deb https://packages.grafana.com/oss/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list
# Add this repository if you want beta releases:
echo "deb https://packages.grafana.com/oss/deb beta main" | sudo tee -a /etc/apt/sources.list.d/grafana.list
# After you add the repository:
sudo apt-get update
sudo apt-get install grafana
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment