Created
December 9, 2019 09:02
-
-
Save jsrimr/52a49a7598ecec20c165dfd842ff29cf to your computer and use it in GitHub Desktop.
install-redis(centos)
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
| sudo yum install -y make gcc wget | |
| wget http://download.redis.io/releases/redis-5.0.7.tar.gz | |
| tar xzf redis-5.0.7.tar.gz | |
| cd redis-5.0.7 | |
| cd deps | |
| make hiredis jemalloc linenoise lua geohash-int | |
| cd .. | |
| make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment