centos6.5安装redis和phpredis

php-redis安装终极方案

#wget下载github上的文件  
wget https://github.com/nicolasff/phpredis/archive/master.zip  
或者
wget https://github.com/phpredis/phpredis/archive/develop.zip

#解压  
unzip master.zip
phpize  
./configure
make && make install  
vi /etc/php.ini  
extension=redis.so 

在Centos上面用yum不能安装redis的朋友看过来

redis 位于第三方的yum源里面,不在centos官方yum源里面,如何解决呢?

  1. 去下面的网站下载EPEL对应的版本:(epel是fedora维护的yum源,里面软件众多)
http://fedoraproject.org/wiki/EPEL
  1. 我下载的是这个:
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
或者
http://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
  1. 安装epel:
rpm -ivh epel-release-6-8.noarch.rpm
  1. 执行安装
yum -y install redis
  1. 服务的启动与停止
service redis start   # 启动
service redis stop    # 停止
service redis restart # 重启
  1. 测试
[vagrant@localhost ~]$ redis-cli
127.0.0.1:6379> set foo 33
OK
127.0.0.1:6379> get foo
"33"

如果是php用到,就需要同时安装 php-redis 扩展

  1. 安装
yum -y install php-redis
  1. 测试
<?php
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$redis->set("foo",22);
echo $redis->get("foo");

参考 及详细的配置讲解篇章

原文地址: http://f.dataguru.cn/thread-47927-1-1.html

参考文档: http://f.dataguru.cn/thread-44212-1-1.html

    原文作者:fizzday
    原文地址: https://www.jianshu.com/p/2e4b3a989922
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞