Created
December 17, 2020 20:06
-
-
Save yashvardhan-kukreja/f7809ad23df81c4a7ef2942e6e5bfc22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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