Centos系統安裝 phpredis 擴充套件

2021-06-21 15:07:38 字數 2095 閱讀 4475

git位址

一、安裝:

phpize

./configure

make && make install

其中,新增php擴充套件需要用到 

phpize

,所以我們需要安裝 

php-devel

這個包。

[plain]view plain

copy

print?

yum install php-devel  

然後編譯安裝phpredis:  

git clone git:  

cd phpredis  

phpize  

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

make  

make install  

安裝成功後,模組會被安裝到系統上,顯示如下:

[plain]view plain

copy

print?

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

執行:ls  /usr/lib64/php/modules/  

顯示有:redis.so  

編輯配置檔案:php.ini

[plain]view plain

copy

print?

extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626"        //php擴充套件路徑  

; enable redis extension module  

extension=redis.so                      //開啟redis擴充套件  

最後重啟web伺服器即可!

二、測試:

在命令列裡執行:php -m ;

發現有redis,表明擴充套件安裝成功!

寫個測試指令碼

[php]view plain

copy

print?

<?php  

$redis

= new

redis();  

$redis

->connect(

'127.0.0.1'

, '6379'

);  

for(

$i= 0; 

$i< 100; 

$i++)   

結果輸出

[plain]view plain

copy

print?

+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong  

+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong  

+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong  

+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong  

+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong+pong  

docker 中的php環境安裝phpredis

3.進行編譯 使用phpize報錯 缺少安裝php devel 後使用yum install php devel 但是有相容報錯 後來使用 yum install php56w devel 安裝成功 usr bin phpize 執行phpize 具體的環境phpize位置不同 configure ...

安裝Centos系統

一 安裝centos 7系統 介紹 vmware workstation是乙個虛擬pc的軟體,利用vmware工作站,可以在現有的作業系統上虛擬出乙個或多個環境。相當於模擬出多台新的pc,可以讓你同時執行多個windows系統,linux系統,dos系統。點選右上角的新建虛擬機器 選擇自定義 下一步...

安裝centos系統

1.預習和複習的重要性 2.當日事當日畢 3.記筆記 4.利用好資源 系統centos7 虛擬軟體vm10 終端putty xshell 各大軟體會變動 r.aminglinux.com centos7.aminglinux.com 兩種方式 第一種 選擇雲主機 第二種 傳統的idc 1.購買伺服器...