Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active September 22, 2023 16:01
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guitarrapc/b5b31f8de44083fdb122faddf62c0d01 to your computer and use it in GitHub Desktop.
Save guitarrapc/b5b31f8de44083fdb122faddf62c0d01 to your computer and use it in GitHub Desktop.
Install redisinsight on linux. https://redislabs.com/redisinsight/
#!/bin/bash
curl -L -O https://downloads.redisinsight.redislabs.com/latest/redisinsight-linux64
chmod +x redisinsight-linux64
./redisinsight-linux64
@csaltos
Copy link

csaltos commented May 20, 2020

Great !! ... thanks !! ;) :)

Just in case with a different listening host and port:

REDISINSIGHT_PORT=8002 REDISINSIGHT_HOST=0.0.0.0 ./redisinsight-linux64

@riguelwarren
Copy link

Unfortunately the command is out of date. Current command:

curl -O https://d3fyopse48vfpi.cloudfront.net/latest/redisinsight-linux64
chmod +x redisinsight-linux64
./redisinsight-linux64

@guitarrapc
Copy link
Author

is it? I still can download from https://downloads.redisinsight.redislabs.com/latest/redisinsight-linux64, though.
I checked source and still url is alive.
image

@csaltos
Copy link

csaltos commented Dec 17, 2021

Be careful on running a program from a public CDN like cloudfront.net … please refer to the original source of Redis Labs and always using HTTPS

@koresar
Copy link

koresar commented Oct 13, 2022

@koresar
Copy link

koresar commented Oct 13, 2022

@jlost
Copy link

jlost commented Sep 22, 2023

Use -L to follow the redirect to CloudFlare:
curl -O -L https://downloads.redisinsight.redislabs.com/latest/redisinsight-linux64

@guitarrapc
Copy link
Author

updated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment