使用Homebrew安装redis能够减小大量的安装和配置的工做量。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
$ ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgentscode
使用launchctl启动redis server
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plistserver
使用配置文件启动redis server
$ redis-server /usr/local/etc/redis.confhomebrew
中止redis server的自启动
$ launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plistcli
redis 配置文件的位置
/usr/local/etc/redis.conf配置
卸载redis和它的文件
brewuninstallredisbrewuninstallredis rm ~/Library/LaunchAgents/homebrew.mxcl.redis.plist配置文件
测试redis server是否启动
$ redis-cli pingdi