Skip to content

Instantly share code, notes, and snippets.

@ljay79
Last active July 13, 2020 09:29
Show Gist options
  • Save ljay79/586a3d206d4fe36e4bd3a80de7d1f18a to your computer and use it in GitHub Desktop.
Save ljay79/586a3d206d4fe36e4bd3a80de7d1f18a to your computer and use it in GitHub Desktop.
redis-cli install on amazon linux 2 including deps
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