centos6安装php7的redis扩展
Posted 爱钓鱼的程序猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6安装php7的redis扩展相关的知识,希望对你有一定的参考价值。
https://pecl.php.net/package/redis选择自己的版本
wget https://pecl.php.net/get/redis-4.2.0.tgz
tar -zxvf redis-4.2.0.tgz
cd redis-4.2.0
/usr/local/php73/bin/phpize
./configure --with-php-config=/usr/local/php73/bin/php-config
make&&make install
修改php.ini配置,添加
extension=redis.so
重启php-fpm即可
以上是关于centos6安装php7的redis扩展的主要内容,如果未能解决你的问题,请参考以下文章