Install Redis on macOS
Opened this issue · 0 comments
openHacking commented
- install redis
brew install redis
- start redis
brew services start redis
stop
brew services stop redis
- edit password
edit redis.conf
vim /usr/local/etc/redis.conf
set requirepass
requirepass 123456
- connect to redis cli
redis-cli
- auth login
AUTH "123456"