上篇博客总结了下如何部署redis服务,可以参考linux下redis服务的搭建。现在要在php环境下使用redis,需要在php环境下添加redis扩展。
思路很简单,安装php,安装redis,添加redis扩展,三个步骤。(PS: 我是新建另一台虚拟机进行安装,所以php也需要安装)。
VMware虚拟机,centos6.3
新虚拟机需要安装一些常见的工具包,包括gcc在内的等。
yum -y install gcc gcc-c++ libxml2 libxml2-devel bzip2 bzip2-devel libmcrypt libmcrypt-devel openssl openssl-devel libcurl-devel libjpeg-devel libpng-devel freetype-devel readline readline-devel libxslt-devel perl perl-devel psmisc.x86_64 recode recode-devel libtidy libtidy-devel epel-release libmcrypt-devel
下载、安装,configure时指定安装目录及配置文件目录
[root@localhost software]# wget http://cn2.php.net/distributions/php-5.6.32.tar.gz
[root@localhost software]# tar zxvf php-5.6.32.tar.gz
[root@localhost software]# cd php-5.6.32
[root@localhost php-5.6.32]# ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/config
[root@localhost php-5.6.32]# make && make install
此时PHP以安装好,在我们指定的配置文件目录(/usr/local/php/config)新建响应的目录,并且新建php.ini文件,此时配置文件为空,所有配置为默认配置,需要改动的话,在此文件中添加即可。操作如下:
[root@localhost ~]# cd /usr/local/php
[root@localhost php]# mkdir config
[root@localhost php]# vim config/php.ini
[root@localhost php]# cd /root/software/
[root@localhost software]# wget http://pecl.php.net/get/redis-3.1.3.tgz
[root@localhost software]# tar zxvf redis-3.1.3.tgz
[root@localhost software]# cd redis-3.1.3
[root@localhost redis-3.1.3]# /usr/local/php/bin/phpize
[root@localhost redis-3.1.3]# ./configure --with-php-config=/usr/local/php/bin/php-config
[root@localhost redis-3.1.3]# make
[root@localhost redis-3.1.3]# make install
先查看目前的PHP扩展情况
[root@localhost redis-3.1.3]# cd /usr/local/php
[root@localhost php]# bin/php -m|grep redis
进入配置文件添加 extension=redis.so
[root@localhost php]# vim config/php.ini
再次查看PHP扩展情况,有了返回内容
[root@localhost php]# bin/php -m|grep redis
扩展安装完成,可以再php中使用redis相关类。
PS:
$redis = new \Redis();