当前位置: 代码迷 >> 综合 >> ubuntu16.04 phpredis
  详细解决方案

ubuntu16.04 phpredis

热度:69   发布时间:2023-12-12 01:36:16.0

# 下载git 以及PHP扩展
apt-get install git php-dev# 下载phpredisgit clone https://github.com/nicolasff/phpredis.git#进行编译
cd phpredis/
phpize
./configure
make && make install#编辑配置文件vi /etc/php/7.0/fpm/conf.d/20-redis.ini#此时这个配置文件的extension=redis.so  是打开的,直接退出#重启phpfpm
service php7.0-fpm restart#重启nginxservice nginx restart#查看 phpinfo()

  相关解决方案