Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active September 22, 2023 16:01
Show Gist options
  • Select an option

  • Save guitarrapc/b5b31f8de44083fdb122faddf62c0d01 to your computer and use it in GitHub Desktop.

Select an option

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

csaltos commented May 20, 2020

Copy link
Copy Markdown

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
Copy Markdown

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
Copy Markdown
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

csaltos commented Dec 17, 2021

Copy link
Copy Markdown

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

koresar commented Oct 13, 2022

Copy link
Copy Markdown

@koresar

koresar commented Oct 13, 2022

Copy link
Copy Markdown

@jlost

jlost commented Sep 22, 2023

Copy link
Copy Markdown

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

@guitarrapc

Copy link
Copy Markdown
Author

updated

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