Created
June 18, 2013 00:07
-
-
Save dodyw/5801623 to your computer and use it in GitHub Desktop.
Command sequence to install redis on fedora. Redis location will be /opt/redis. Replace 2.6.13 with the redis latest version.
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
| cd /opt/ | |
| mkdir /opt/redis | |
| wget http://redis.googlecode.com/files/redis-2.6.13.tar.gz | |
| tar -zxvf /opt/redis-2.6.13.tar.gz | |
| cd /opt/redis-2.6.13/ | |
| make | |
| cp /opt/redis-2.6.13/redis.conf /opt/redis/redis.conf.default | |
| cp /opt/redis-2.6.13/src/redis-benchmark /opt/redis/ | |
| cp /opt/redis-2.6.13/src/redis-cli /opt/redis/ | |
| cp /opt/redis-2.6.13/src/redis-server /opt/redis/ | |
| cp /opt/redis-2.6.13/src/redis-check-aof /opt/redis/ | |
| cp /opt/redis-2.6.13/src/redis-check-dump /opt/redis/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment