Skip to content

Instantly share code, notes, and snippets.

@yorickshan
Forked from tomysmile/mac-setup-redis.md
Last active November 15, 2022 02:42
Show Gist options
  • Save yorickshan/ee6d024e41339dfca32e2e5eee2feb79 to your computer and use it in GitHub Desktop.
Save yorickshan/ee6d024e41339dfca32e2e5eee2feb79 to your computer and use it in GitHub Desktop.
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis // or redis-server

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

Command Line Interface:

redis-cli --raw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment