CentOS7下PHP7.2安裝redis擴展

一、安裝phpize(存在忽略)php

yum install php-devel

二、下載擴展源碼包,直接用wget,通常放在 /usr/local/srcgit

wget https://github.com/edtechd/phpredis/archive/php7.zip

3 解壓php7.zipgithub

unzip php7.zip

4.解壓目錄爲pphpredis-php7,進入該文件夾,開始編譯php擴展redis

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

執行完上一步,咱們就有了 configure 配置文件了。php7

5.配置環境spa

./configure --with-php-config=/usr/bin/php-config

其中 php-config 和 phpize 所在的目錄是相同的,好比上面我用 /usr/bin/phpize,則在這一步我用 ./configure –with-php-config=/usr/bin/php-config (其實若是你的php是默認安裝路徑的話,直接 ./configure 就能夠了,我的而言吧)code

6.編譯安裝blog

make && make install

七、配置php.ini,添加:ip

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

extension=redis.so

八、重啓php
在php.info中查看redis信息

 

相關文章
相關標籤/搜索