Install and config Redis on macOS

Installing Redis on Mac with brew

Install with brew

brew install redis

Start, stop, restart with brew services

start

brew services start redis

stop

brew services stop redis

restart

brew services restart redis

Check connection with redis-cli

You can check the connection using the PING command

Last updated