首先去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 <= lines; i++) { $numbering.append($('
').text(i)); }; $numbering.fadeIn(1700); }); });
以上就介紹了CentOS 67下php5+安裝redis向外延展群組件,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。