Skip to content

Instantly share code, notes, and snippets.

@tomysmile
Last active August 3, 2023 17:09
Star You must be signed in to star a gist
Embed
What would you like to do?
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

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
@ATSiem
Copy link

ATSiem commented Feb 16, 2022

Perfect!

@alekseyl-workato
Copy link

alekseyl-workato commented Feb 18, 2022

If you need to configure brew-driven redis, then configuration could be found here:

/opt/homebrew/etc/redis.conf

@DataGreed
Copy link

To restart redis after an upgrade:

  brew services restart redis

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

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

@Goodnessuc
Copy link

This is saving lives

@ntung
Copy link

ntung commented Sep 2, 2022

Thanks for your awesome work!

@cybernerdie
Copy link

Thanks for this

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