Skip to content

Instantly share code, notes, and snippets.

@Kuzyashin
Created July 24, 2020 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kuzyashin/ccbad12d5ebc02de79e19b9fdd6e5744 to your computer and use it in GitHub Desktop.
Save Kuzyashin/ccbad12d5ebc02de79e19b9fdd6e5744 to your computer and use it in GitHub Desktop.
brew-redis-macos.md

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis

to stop it, just run:

brew services stop redis

Or, if you don't want/need a background service you can just run:

redis-server /usr/local/etc/redis.conf

Test if Redis server is running.

redis-cli ping

If it replies “PONG”, then it’s good to go!

Location of Redis configuration file.

/usr/local/etc/redis.conf

Uninstall Redis and its files.

brew uninstall redis
rm ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment