当前位置:Gxlcms > PHP教程 > CentOS67下php5+安装redis扩展组件

CentOS67下php5+安装redis扩展组件

时间:2021-07-01 10:21:17 帮助过:20人阅读

首先去redis官网,点击 clients 链接,在 Browse by language 内点击 PHP 项,以phpredis为例,打开这个扩展扩展组件的链接,到github下载此扩展组件。

下载完成后解压获得phpredis文件夹并进入。
然后运行phpize获得configure。

得到configure后运行configure脚本。
./configure --enable-redis-igbinary

此处安装时可能会报错,目前我遇到的有两种:

  1. Cannot find php-config. Please use –with-php-c
    先用find / -name php-config 查找php-config的路径,找到路径后加入 –with-php-config参数,值为php-config的路径。

  2. checking for igbinary includes… configure: error: Cannot find igbinary.h
    这是没有安装igbinary组件的时候报的错,可以去php官网 下载。
    下载后运行解压缩并进入igbinary运行phpize获得configure,然后./configure –with-php-c && make install 安装完成。

配置完成后运行 make && make install。

最后用文本编辑器打开php的配置文件,在php配置文件中加入:
extension=igbinary.so
extension=redis.so

然后创建一个phpinfo脚本。然后重启环境。

环境重启完毕后运行phpinfo脚本,查找redis项和igbinary项,如果能找到redis项和igbinary项,就说明安装成功了。

上述步骤在 CentOS6.7+nginx+php-fpm+php5.4.45中以root权限执行成功

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了CentOS 67下php5+安装redis扩展组件,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行