centos 安裝 redis php-redis擴展的方法及問題解決

redis簡介php

redis是一款很不錯的高性能的key-value數據庫,它的出如今很大程度上彌補了不少像memcached這類的keyvalue存儲的不足,它的特色有:支持持久化、半持久化數據保存、支持主從同步、value值支持多種類型等等。下面來一塊兒看看在CentOS系統安裝Redis及Redis的PHP擴展的詳細介紹。git

一、安裝Redis yum 快速安裝github

yum -y install redis

檢測是否安裝正確redis

//檢測後臺進程是否存在 
ps -ef |grep redis 
//檢測6379端口是否在監聽 
netstat -lntp | grep 6379 
//使用`redis-cli`客戶端檢測鏈接是否正常 
./src/redis-cli 
127.0.0.1:6379> keys * (empty list or set) 
127.0.0.1:6379> set key "hello world" OK 
127.0.0.1:6379> get key "hello world"

二、安裝Redis的PHP擴展數據庫

2.1 安裝phpize服務器

yum install php-devel

2.2 下載擴展源碼包,直接用wgetmemcached

//wget下載github上的文件
 性能

wget https://github.com/nicolasff/phpredis/archive/master.zip

 解壓master.zip測試

unzip master.zip

2.3 解壓目錄爲phpredis-master,進入該文件夾,開始編譯php擴展ui

phpize

2.4 配置環境

./configure
//若果您的服務器裏存在多個版本的php 需指明你想給哪一個應用安裝擴展
./configure --with-php-config=/usr/local/php/bin/php-config

2.5 編譯

make && make install

 

編譯完成後顯示:

Build complete.
Don't forget to run 'make test'.
Installing shared extensions:  /usr/lib64/php/modules/

    進入/usr/lib64/php/modules/文件夾,發現redis.so的擴展

2.6 修改/etc/php.ini,添加下面的擴展

extension=redis.so

2.7 重啓服務器

service httpd restart

最後查看phpinfo,顯示redis,表明安裝成功

三、PHP代碼測試

<?php
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$redis->set('name','zhou', 10);
$key_1 = $redis->get('name');
echo $key_1;
?>

解決PHP Redis擴展沒法加載的問題

多是因爲php版本致使的

用php --version查詢了一下PHP的版本,已是5.6.6了,有多是因爲安裝了多版本或者是版本升級後致使的

php --version
PHP 5.6.6 (cli) (built: Mar 9 2015 13:27:38)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies

若是和確實不一致

解決辦法

1.刪除redis.so文件

2.刪除phpredis-master目錄

3.從新安裝Redis的PHP擴展

相關文章
相關標籤/搜索