Last active
September 22, 2023 16:01
-
-
Save guitarrapc/b5b31f8de44083fdb122faddf62c0d01 to your computer and use it in GitHub Desktop.
Install redisinsight on linux. https://redislabs.com/redisinsight/
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
#!/bin/bash | |
curl -L -O https://downloads.redisinsight.redislabs.com/latest/redisinsight-linux64 | |
chmod +x redisinsight-linux64 | |
./redisinsight-linux64 |
Unfortunately the command is out of date. Current command:
curl -O https://d3fyopse48vfpi.cloudfront.net/latest/redisinsight-linux64
chmod +x redisinsight-linux64
./redisinsight-linux64
is it? I still can download from https://downloads.redisinsight.redislabs.com/latest/redisinsight-linux64, though.
I checked source and still url is alive.
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
The link for Mac M1 chip: https://download.redisinsight.redis.com/latest/RedisInsight-v2-mac-arm64.dmg
And for Mac Intel chip: https://download.redisinsight.redis.com/latest/RedisInsight-v2-mac-x64.dmg
Use -L
to follow the redirect to CloudFlare:
curl -O -L https://downloads.redisinsight.redislabs.com/latest/redisinsight-linux64
updated
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great !! ... thanks !! ;) :)
Just in case with a different listening host and port:
REDISINSIGHT_PORT=8002 REDISINSIGHT_HOST=0.0.0.0 ./redisinsight-linux64