热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

centos6.5安装redis和phpredis

php-redis安装终极方案#wget下载github上的文件wgethttps:github.comnicolasffphpredisarchivemaster.zip或者wg

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. 测试

$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


推荐阅读
author-avatar
nuabolalalala4_135
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有