MacBook安装redis
一、下载redis
1.1 下载地址:https://www.redis.net.cn/download/
1.2 存放目录:/usr/local(其实在mac的下载目录下也是可以的)
二、 解压、编译
1.1 当前目录,打开命令行工具,执行解压命令:tar zxvf redis-5.0.4.tar.gz
如若解压失败,可能因为权限问题,加上sudo可解决
1.2 执行 sudo make test 编译测试,sudo make install 编译安装
1.3 执行 redis-server 启动服务
1.4 另起窗口,执行redis-cli 开启项目即可
三、测试
1.1 存储命令: set name Ailewent,输出ok,即表示成功
1.2 获取命令: get name, 输出对应的value值
四、安装中问题总结:
1、mac安装redis过程中编译测试时出现make: *** No rule to make target 'test'. Stop.
这是因为在解压tar.gz之后,应该先进入redis-5.0.3.tar这个目录里面,然后在编译测试。
2、mac redis 编译测试过程结果可能会出现
Killing still running Redis server xxxx
make[1]: *** [test] Error 1
make: *** [test] Error 2
查看日志里面可能会出现这样一个异常:[exception]: Executing test client: couldn't execute "src/redis- benchmark": no such file or directory. couldn't execute "src/redis-benchmark": no such file or directory。
解决办法需执行以下命令:
sudo make distclean
sudo make
sudo make test
执行完上面这三条命令之后千万别忘记执行sudo make install
看到文章的封面图片就表示运行起来了,可以另外启动一个窗口进行测试
版权申明
本文系作者 @Tis-FYM 原创发布在Tis-FYI站点。未经许可,禁止转载。
暂无评论数据