Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created June 18, 2013 00:07
Show Gist options
  • Select an option

  • Save dodyw/5801623 to your computer and use it in GitHub Desktop.

Select an option

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.
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