Install and config Redis on Mac OS X via Homebrew
Install Redis
brew install redisLaunch Redis on computer starts.
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgentsStart Redis server via launchctl.
launchctl.launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plistStart Redis server using configuration file.
redis-server /usr/local/etc/redis.confStop Redis on autostart on computer start.
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plistLocation of Redis configuration file.
Uninstall Redis and its files.
Get Redis package information.
Test if Redis server is running.
Last updated