Skip to content

Instantly share code, notes, and snippets.

@ohshhh
Created November 18, 2014 16:03
Show Gist options
  • Save ohshhh/f1f31a47daa8dbbca786 to your computer and use it in GitHub Desktop.
Save ohshhh/f1f31a47daa8dbbca786 to your computer and use it in GitHub Desktop.
redis install, centos 6
// --- Compiling ---
$ wget http://download.redis.io/releases/redis-2.8.3.tar.gz
$ tar xzvf redis-2.8.3.tar.gz
$ cd redis-2.8.3
$ make
$ make install
// --- or using yum ---
$ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
$ rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
$ yum --enablerepo=remi,remi-test install redis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment