作者:秘密不能说雨 | 来源:互联网 | 2023-08-08 23:20
安装
检查是否安装成功
启动
检查是否启动成功
参考
安装
brew install redis
检查是否安装成功
启动
brew services start redis
➜ Demo brew services start redis
==> Successfully started `redis` (label: homebrew.mxcl.redis)
# 检测已启动的项目
➜ Demo brew services list
Name Status User Plist
elasticsearch error thoth /Users/thoth/Library/LaunchAgents/homebrew.mxcl.elasticsearch.plist
filebeat stopped
kafka stopped
kibana stopped
logstash stopped
mysql@5.7 started thoth /Users/thoth/Library/LaunchAgents/homebrew.mxcl.mysql@5.7.plist
nginx stopped
packetbeat stopped
redis started thoth /Users/thoth/Library/LaunchAgents/homebrew.mxcl.redis.plist
zookeeper stopped
检查是否启动成功
➜ ~ redis-cli -h 127.0.0.1
127.0.0.1:6379> ping
PONG
参考
https://blog.csdn.net/spoliedchild/article/details/90076504