Install and run redis in Mac
Jan 3, 2022
First please check brew is installed in the mac. If yes,
which brew
use above command to check in brew in the mac. Then,
brew install redis
brew services start redis
redis-cli ping
brew services stop redis
Install redis stack
In terminal,
- Run
brew tap redis-stack/redis-stack
- Run
brew install redis-stack
- Start Redis with
redis-stack-server
- To connect to your local Redis server and execute commands, run
redis-cli