使用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