Redis 설치
brew install redis
설치 폴더
redis 실팽 파일 경로
/usr/local/bin
실행 파일 별 심볼릭 링크 경로
redis 설정 파일 경로
/usr/local/etc
설정 파일 명
redis 실행 전 설정(redis.conf 파일)
실행 포트 변경
# Accept connections on the specified port, default is 6379 (IANA #815344).
# If port 0 is specified Redis will not listen on a TCP socket.
port 6379
외부 접근 IP 추가
################################## NETWORK #####################################
# By default, if no "bind" configuration directive is specified, Redis listens
# for connections from all available network interfaces on the host machine.
# It is possible to listen to just one or multiple selected interfaces using
# the "bind" configuration directive, followed by one or more IP addresses.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1 ::1
redis 서버 실행
redis-server
redis 서버 접속
redis-cli
'SERVER > Redis' 카테고리의 다른 글
Redis 기본 명령어 (0) | 2021.03.25 |
---|