天天看点

CentOS7配置php7.0支持redis

rpm 安装 Php7 相应的 yum源

CentOS/RHEL 7.x:

# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

redis下载:

wget http://pecl.php.net/get/redis-3.1.6.tgz

配置之前应该是环境已经搭好了,phpinfo的页面可以加载出来。

使用git clone下载git上的phpredis扩展包

[[email protected]_103_117_centos ]#git clone  https://github.com/phpredis/phpredis.git

到了这一步,我们要使用安装php时生成的phpize来生成configure配置文件,

//具体用哪个要取决于你的phpize文件所在的目录,这时你应该用 whereis phpize 来查看路径

[[email protected]_103_117_centos phpredis]# whereis phpize

phpize: /usr/bin/phpize /usr/share/man/man1/phpize.1.gz

这里表明路径为/usr/bin/phpize,然后执行:

[[email protected]_103_117_centos phpredis]# /usr/bin/phpize

Can't find PHP headers in /usr/include/php

The php-devel package is required for use of this command.

这里报错了,原因是没有安装好php-devel,由于我是使用的php7.0所以执行以下命令:

[[email protected]_103_117_centos phpredis]#yum -y install php70w-devel

然后再次执行:

[[email protected]_103_117_centos phpredis]# /usr/bin/phpize

Configuring for:

PHP Api Version: 20151012

Zend Module Api No: 20151012

Zend Extension Api No: 320151012

执行完上一步,我们就有了 configure 配置文件了,接下来配置

[[email protected]_103_117_centos phpredis]#./configure

或者执行

[[email protected]_103_117_centos phpredis]#./configure --with-php-config=/usr/bin/php-config

接下来是编译安装

[[email protected]_103_117_centos phpredis]#make 

[[email protected]_103_117_centos phpredis]# make install

Installing shared extensions: /usr/lib64/php/modules/

配置php的配置文件php.ini(具体放在那里可以用 whereis php.ini 来查看),我的配置文件php.ini在/etc/下

[[email protected]_103_117_centos phpredis]#vim /etc/php.ini

加入下面几行:

[redis]

extension_dir =/usr/lib64/php/modules/

extension = redis.so

redis.so文件的路径可以在make install的时候看到

重启apache服务器,使配置生效

[[email protected]_103_117_centos phpredis]#systemctl restart httpd.service

重启之后我们打开info.php,已经可以看到redis的扩展信息了

CentOS7配置php7.0支持redis

本文转自:https://www.cnblogs.com/liuboswu/p/7722947.html

继续阅读