# 도커 이미지 pull
$ sudo docker pull redis
# 설정파일 디렉토리 생성 및 설정파일 다운로드
$ mkdir -p /etc/redis
$ wget http://download.redis.io/redis-stable/redis.conf -O /etc/redis/redis.conf
# redis-net이라는 브리지를 사용
$ sudo docker network create redis-net
# 컨테이너 실행
$ sudo docker run --name myredis -p 6379:6379 --network redis-net -d -v /etc/redis/redis.conf:/usr/local/etc/redis/redis.conf redis redis-server --appendonly yes
# redis-cli 로 실행
$ sudo docker run -it --network redis-net --rm redis redis-cli -h myredis
# 컨테이너 접속
$ sudo docker exec -it myredis /bin/bash
# 컨테이너 로그
$ docker logs redis
sudo docker pull redis
sudo docker run --name redis -p 6379:6379 -d redis
redis-cli -h host -p port -a password
redis-cli -h 127.0.0.1 -p 6379 -a "mypass"
'Data Engineering > Redis' 카테고리의 다른 글
[Redis] 원격접속 (0) | 2022.07.25 |
---|---|
[Redis] you can t write against a read only replica (0) | 2022.07.25 |
[Redis] ubuntu 설치 (0) | 2022.07.01 |
[Redis] 기본명령어 (0) | 2022.06.08 |
[Redis] 윈도우 설치 (0) | 2022.06.08 |