作者:nuabolalalala4_135 | 来源:互联网 | 2023-08-04 08:18
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源里面,如何解决呢?
- 去下面的网站下载EPEL对应的版本:(epel是fedora维护的yum源,里面软件众多)
http://fedoraproject.org/wiki/EPEL
- 我下载的是这个:
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
- 安装epel:
rpm -ivh epel-release-6-8.noarch.rpm
- 执行安装
yum -y install redis
- 服务的启动与停止
service redis start # 启动
service redis stop # 停止
service redis restart # 重启
- 测试
[vagrant@localhost ~]$ redis-cli
127.0.0.1:6379> set foo 33
OK
127.0.0.1:6379> get foo
"33"
如果是php用到,就需要同时安装 php-redis
扩展
- 安装
yum -y install php-redis
- 测试
$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