Skip to content

Instantly share code, notes, and snippets.

@dev0x10
Forked from nghuuphuoc/1) Install
Last active March 13, 2016 05:43
Show Gist options
  • Save dev0x10/dcf29fa9489caabef28f to your computer and use it in GitHub Desktop.
Save dev0x10/dcf29fa9489caabef28f to your computer and use it in GitHub Desktop.
Install Redis on Centos 6
// --- Compiling ---
$ wget http://download.redis.io/releases/redis-3.0.7.tar.gz
$ tar xzvf redis-3.0.7.tar.gz
$ cd redis-3.0.7
$ 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
$ sudo nano /etc/sysctl.conf
vm.overcommit_memory=1
$ sysctl vm.overcommit_memory=1
$ sysctl -w fs.file-max=100000
$ chkconfig --add redis
$ chkconfig --level 345 redis on
$ service redis start/stop/restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment