1.
一. mac下redis的安装
1. 官网http://redis.io/ 下载最新的稳定版本,这里是5.0.9
2. sudo mv 到 /usr/local/
3. sudo tar -zxf redis-5.0.9.tar 解压文件
4. 进入解压后的目录 cd redis-5.0.9
5. sudo make test 测试编译
6. sudo make install //安装redis
如果在第5步测试时报如下错:
Executing test client: couldn't execute "src/redis-benchmark": no such file or directory.
则执行以下两个步骤
1.sudo make distclean
2.sudo make
https://www.cnblogs.com/guanbin-529/p/9180840.html
brew cask install another-redis-desktop-manager
https://github.com/qishibo/AnotherRedisDesktopManager
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:第47月第25天 Executing test client: couldn’t execute “src/redis-benchmark”: no such file or directory. - Python技术站