centos6.5環境 安裝php5.5.30的redis擴充 介紹,centos6.5redis

來源:互聯網
上載者:User

centos6.5環境 安裝php5.5.30的redis擴充 介紹,centos6.5redis
1、下載軟體包wget http://pecl.php.net/get/redis-2.2.5.tgz   2、解壓tar zxvf redis-2.2.5.tgz    3、進入安裝目錄 cd redis-2.2.5   4、用phpize產生configure設定檔 /usr/local/php/bin/phpize    5、配置(填寫php的設定檔路徑)./configure --with-php-config=/usr/local/php/bin/php-config   6、編譯make    7、安裝 make install   安裝完成之後,出現下面的安裝路徑/usr/local/php-5.5.30/lib/php/extensions/no-debug-non-zts-20121212/ ls一下,可以看到.so的檔案 然後組裝一下地址:/usr/local/php-5.5.30/lib/php/extensions/no-debug-non-zts-20121212/redis.so    8、配置php支援 vi /usr/local/php/etc/php.ini 添加extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/redis.so     9、開啟php、redis、nginx   10、測試 $redis=new Redis();$redis->connect("192.168.1.128",6379);$redis->set("username","zhangsan"); echo $redis->get("user:userid:10:username"); $redis->lpush("list","helloWorld");$redis->lpush("list","goodMorning");$redis->lpush("list","what");$list=$redis->lrange("list",0,-1); print_r($list);  測試正常

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.