php 安装 Redis扩展

下载地址:https://pecl.php.net/package/redis

上传目录:/usr/local/src

 

# 进入安装包目录
cd /usr/local/src/
# 解压 tar zxf redis-x.x.x.tgz
cd redis-x.x.x/

# 编译
phpize
./configure --with-php-config=/usr/local/php/bin/php-config
# 安装
make && make install

# 编辑php配置文件,添加扩展
vim /usr/local/php/lib/php.ini
extension=redis

# 重启php-fpm
ps aux|grep php-fpm
kill 主进程ID
php-fpm

 

Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable. Then, rerun this script.

apt install -y autoconf

posted @ 2019-03-30 10:15  绿静風  阅读(413)  评论(0编辑  收藏  举报