openHacking/xhack

Install Redis on macOS

Opened this issue · 0 comments

  1. install redis
brew install redis
  1. start redis
brew services start redis

stop

brew services stop redis
  1. edit password
    edit redis.conf
vim /usr/local/etc/redis.conf

set requirepass

requirepass 123456
  1. connect to redis cli
redis-cli
  1. auth login
AUTH "123456"