How to install redis extension for php 7
Referred this link https://anton.logvinenko.name/en/blog/how-to-install-redis-and-redis-php-client.html
And done following steps
PhpRedis for PHP 7 (Skip it if you have different PHP version)
Install required package
apt-get install php7.0-dev
Download PhpRedis
cd /tmp
wget https://github.com/phpredis/phpredis/archive/php7.zip -O phpredis.zip
But, https://github.com/phpredis/phpredis/archive/php7.zip file not found for installation.
Solution 1:
Try to use this url https://github.com/phpredis/phpredis/archive/5.2.2.zip
wget https://github.com/phpredis/phpredis/archive/5.2.2.zip -O phpredis.zip
Or use this command:
sudo apt-get install php-redis
Solution 2:
Yesterday, I installed Redis on my Vagrant box (/etc/php/7.0
):
sudo pecl install redis
sudo service php7.0-fpm restart
(optional: run php -m
for listing the php modules).
Now, you can use the Redis
class in your php code.
Solution 3:
I found a repository from ubuntu:
sudo apt-get install php-redis
- Restart apache after installation.
Solution 4:
I just ran the command below for Cent os 7
yum install php-redis
Resolved my issue and i added the config in php.ini manualy
You should add "extension=redis.so" to php.ini