brew install redis
redis-server
6379포트로 실행됨
redis-cli
redis CLI 환경으로 접속
/opt/homebrew/etc/redis.conf
에 생성됨 - (m1에서 homebrew로 설치했을 경우 한정); 만약 없으면 링크된 파일의 내용을 복사해서 생성redis-server [path/to/redis.conf]
로 실행하면, 해당 conf 파일 기반으로 실행됨.#requirepass foobared
의 주석 해제하고 foobared
를 원하는 비밀번호로 설정redis-cli
에서 AUTH [패스워드]
입력 후 redis 커멘드 사용 가능해짐TablePlus🐘
에서도 비밀번호를 입력하고 connect 해야함/etc/redis.conf
.conf
파일에서 maxmemory (용량제한) 및 eviction policy 설정 가능daemonize yes
를 설정해서 백그라운드에서 실행
logfile
path/to/log
이런식으로 지정Redis 소개와 설치 방법, 보안 설정 방법(ip 허용, 비밀번호 설정)등 빠르게 세팅하기
What Happens When Redis Runs Out of Memory
redis maxmemory & eviction policy