您的位置:首页 > 数据库 > Redis

brew安装与启动redis

2021-03-25 11:43 337 查看

目录

安装

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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: