Skip to content

Instantly share code, notes, and snippets.

@ndom91
Forked from yashvardhan-kukreja/install-loki.sh
Created December 23, 2020 17:45
Show Gist options
  • Save ndom91/5811f6eee69ca73fae271581f2d1f892 to your computer and use it in GitHub Desktop.
Save ndom91/5811f6eee69ca73fae271581f2d1f892 to your computer and use it in GitHub Desktop.
# Download Loki
curl -O -L "https://github.com/grafana/loki/releases/download/v2.0.0/loki-linux-amd64.zip"
# Extract Loki's binary
unzip "loki-linux-amd64.zip"
# Make it executable
chmod a+x "loki-linux-amd64"
# Move it to your bin path with the name "loki"
sudo mv loki-linux-amd64 /usr/local/bin/loki
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment