CentOS7配置php7.0支持redis

配置以前應該是環境已經搭好了,phpinfo的頁面能夠加載出來。php

使用git clone下載git上的phpredis擴展包git

[root@VM_103_117_centos ]#git clone  https://github.com/phpredis/phpredis.gitgithub

到了這一步,咱們要使用安裝php時生成的phpize來生成configure配置文件,redis

//具體用哪一個要取決於你的phpize文件所在的目錄,這時你應該用 whereis phpize 來查看路徑apache

[root@VM_103_117_centos phpredis]# whereis phpize
phpize: /usr/bin/phpize /usr/share/man/man1/phpize.1.gz vim

這裏代表路徑爲/usr/bin/phpize,而後執行:centos

[root@VM_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因此執行如下命令:php7

[root@VM_103_117_centos phpredis]#yum -y install php70w-develui

而後再次執行:

[root@VM_103_117_centos phpredis]# /usr/bin/phpize
Configuring for:
PHP Api Version: 20151012
Zend Module Api No: 20151012
Zend Extension Api No: 320151012

執行完上一步,咱們就有了 configure 配置文件了,接下來配置

[root@VM_103_117_centos phpredis]#./configure

或者執行

[root@VM_103_117_centos phpredis]#./configure --with-php-config=/usr/bin/php-config

接下來是編譯安裝

[root@VM_103_117_centos phpredis]#make 

[root@VM_103_117_centos phpredis]# make install
Installing shared extensions: /usr/lib64/php/modules/

配置php的配置文件php.ini(具體放在那裏能夠用 whereis php.ini 來查看),個人配置文件php.ini在/etc/下

[root@VM_103_117_centos phpredis]#vim /etc/php.ini

加入下面幾行:

[redis]
extension_dir =/usr/lib64/php/modules/
extension = redis.so

redis.so文件的路徑能夠在make install的時候看到

重啓apache服務器,使配置生效

[root@VM_103_117_centos phpredis]#systemctl restart httpd.service

重啓以後咱們打開info.php,已經能夠看到redis的擴展信息了

 

相關文章
相關標籤/搜索