- Mac Apple Silicon
- Linux
Open Terminal
# To install the redis
brew install redis
# To start the service
brew services start redis
# To stop the service
brew services stop redis
Open Terminal
sudo apt update
sudo apt install redis-server
sudo systemctl enable redis.service
Ensure that the server is running using the systemctl start command:
sudo systemctl start redis.service
redis-cli