Linux下安裝redis以及redis擴充

來源:互聯網
上載者:User

標籤:測試   har   ati   lib   .so   fpm   mkdir   extension   .net   

//安裝redis

 

//下載redis

wget http://download.redis.io/releases/redis-2.8.3.tar.gz

//解壓

tar xzf redis-2.8.3.tar.gz//進入解壓後的檔案

cd redis-2.8.3//編譯

make

 

//安裝成功

 

//自己建立一個新的檔案夾(任何位置)mkdir /usr/redis

//移動redis.conf到新目錄下

cp redis.conf  /usr/redis

//再進入redis安裝目錄

cd /redis-2.8.3/src

//把這三個檔案複製並移動到剛建立的檔案夾下

cp redis-server  redis-benchmark   redis-cli  /usr/redis

//end  到這裡redis安裝完畢

 

//可以測試是否安裝成功

cd /usr/redis

//手動啟動redis 服務 然後退出

./redis-server

//運行redis用戶端

./redis-cli

 

set user root

 

get user

root

-------------

 

//安裝php redis 擴充

首先 下載 php redis 包

地址:http://pecl.php.net/package/redis

//我這裡下載的是:redis-2.2.5.tgz 

下載成功之後 把檔案上傳到 /usr/local/php     

 

//解壓縮

tar -zxvf phpredis-2.2.5.tgz

//進入解壓後的檔案夾

cd  phpredis-2.2.5.tgz

//用phpize產生configure設定檔

/usr/local/php/bin/phpize 

//內容如下

Configuring for:

PHP Api Version:         20131106

Zend Module Api No:      20131226

Zend Extension Api No:   220131226

//配置

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

//安裝 編譯make

make install

//返回內容如下

Installing shared extensions:   /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/

//進入查看是否安裝成功   redis.so

cd /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/

//然後配置php.ini

vim /usr/local/php/etc/php.ini

//加入

extension=redis.so

:wq

//重啟php-fpm 和 nginx ||  apache

 

//然後查看你的 phpinfo 

 

搞定!!

 

Linux下安裝redis以及redis擴充

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.