mac环境下安装Redis
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac环境下安装Redis相关的知识,希望对你有一定的参考价值。
参考文章:http://www.jianshu.com/p/6b5eca8d908b
1.安装
下载安装包 redis-*.*.*.tar.gz
解压:tar -zvxf redis-*.*.*.tar.gz 将解压后的文件夹放到 /usr/local目录下
编译测试:
接下来在终端中切换到/usr/local/redis目录下,输入:sudo make test
$ wget http://download.redis.io/releases/redis-3.2.8.tar.gz $ tar xzf redis-3.2.8.tar.gz $ cd redis-3.2.8 $ make
The binaries that are now compiled are available in the src
directory. Run Redis with:
$ src/redis-server
You can interact with Redis using the built-in client:
$ src/redis-cli redis> set foo bar OK redis> get foo "bar"
2.扩展
有没有安装redis扩展:可先在自己的demo中查看phpinfo.php
<?php echo phpinfo();
举例在thinkphp3.2.3项目中,使用redis,
1.看教程:
http://www.thinkphp.cn/code/1458.html
2.下载redis.rar,查看说明。
cd /usr/local/php5
sudo cp -r ~/Downloads/redis/redis扩展文件/ ./
3.添加了config.conf,
3.先确保php的redis扩展已经安装好。
http://demo.ccc/default/phpinfo.php
如没有安装好?
mac 中安装redis 以及 安装php-redis扩展过程详细记录
http://www.cnblogs.com/neverleave/p/6309063.html
4.,找到 /private/etc/php.ini
Php.ini加下面两行:
extension=php_igbinary.dll
extension=php_redis.dll
注:php_redis.dll需放在php_igbinary.dll之后
==
php-fpm重启
killall php-fpm
再执行(usr/local/php是php的安装目录)
/usr/local/php/sbin/php-fpm &
出现:
:(
Redis server went away
是不是防火墙被关闭了。
查看,系统偏好设置。
以上是关于mac环境下安装Redis的主要内容,如果未能解决你的问题,请参考以下文章