centos67下php5+安装redis扩展组件

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

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

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

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

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

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

Posted in 未分类

发表评论