-
-
Save strrife/8031c79a2f3bff29867f to your computer and use it in GitHub Desktop.
Install Redis on Centos 6
This file contains 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
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 -y --enablerepo=remi,remi-test install redis |
This file contains 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 nano /etc/sysctl.conf | |
# Redis | |
vm.overcommit_memory=1 | |
sysctl vm.overcommit_memory=1 | |
sysctl -w fs.file-max=100000 |
This file contains 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
chkconfig --add redis | |
chkconfig --level 345 redis on | |
service redis start | |
redis-cli ping |
This file contains 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
wget https://github.com/nicolasff/phpredis/zipball/master -O phpredis.zip | |
unzip phpredis.zip | |
cd phpredis-phpredis-* | |
phpize | |
./configure | |
make | |
make install | |
#CPanel | |
nano /usr/local/lib/php.ini | |
extension=redis.so | |
php -r "var_dump(class_exists('Redis'));" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment