使用Homebrew安装Redis

使用Homebrew安装Redis可以减少大量的安装和配置的工作量。
安装命令 brew install redis 安装完成后的提示信息

To have launchd start redis at login: ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents Then to load redis now: launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist Or, if you don’t want/need launchctl, you can just run: redis-server /usr/local/etc/redis.conf

开机启动redis命令
$ ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
使用launchctl启动redis server
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
使用配置文件启动redis server
$ redis-server /usr/local/etc/redis.conf
停止redis server的自启动
$ launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
redis 配置文件的位置 /usr/local/etc/redis.conf
卸载redis和它的文件

 brew uninstall redis
 rm ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

测试redis server是否启动 $ redis-cli ping

    原文作者:狂猿
    原文地址: https://www.jianshu.com/p/c0faf7557ca7
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞