Last active
July 13, 2020 09:29
-
-
Save ljay79/586a3d206d4fe36e4bd3a80de7d1f18a to your computer and use it in GitHub Desktop.
redis-cli install on amazon linux 2 including deps
This file contains 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
https://gist.github.com/todgru/14768fb2d8a82ab3f436#gistcomment-2189155 | |
``` | |
sudo yum install -y gcc | |
wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz | |
cd deps | |
make hiredis jemalloc linenoise lua geohash-int | |
cd .. | |
make install | |
sudo cp src/redis-cli /usr/bin/ | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment