티스토리 뷰
$ docker pull redis
-d는 컨테이너를 백그라운드로 실행하라는 것
$ docker run --name myredis -d redis
$ docker logs 809b11ac4b56
1:C 09 Jul 03:10:54.232 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
1:C 09 Jul 03:10:54.232 # Redis version=4.0.10, bits=64, commit=00000000, modified=0, pid=1, just started
1:C 09 Jul 03:10:54.232 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
1:M 09 Jul 03:10:54.233 * Running mode=standalone, port=6379.
1:M 09 Jul 03:10:54.233 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
1:M 09 Jul 03:10:54.233 # Server initialized
1:M 09 Jul 03:10:54.233 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
1:M 09 Jul 03:10:54.233 * Ready to accept connections
redis-cli 용 컨테이너 실행
--link myredis:redis myredis container를 새로운 컨테이너에서 redis라는 이름으로 참조하라 (docker는 컨테이너 /etc/hosts에 redis를 위한 진입점을 생성하고 myredis의 IP를 가리키게 한다. 이로서 Redis container의 IP 주소를 전달하거나 찾을 필요없이 redis-cli에서 redis라는 호스트 명으로 접근 가능해진다. )
--rm 컨테이너가 종료되면 자동으로 컨테이너를 삭제한다. -d와는 같이 사용될수 없다.
-it interactive, pseudo tty mode
$ docker run --rm -it --link myredis:redis redis /bin/bash
root@06589652dbfd:/data# redis-cli -h redis -p 6379
redis:6379> ping
PONG
redis:6379> set "abc" 123
OK
redis:6379> get "abc"
"123"
redis:6379> exit
'Programming > Tools' 카테고리의 다른 글
google spread sheet에서 다른 파일의 내용을 import할 때 (0) | 2018.11.24 |
---|---|
docker-machine boot2docker sudo (0) | 2018.07.23 |
docker commands basic II (0) | 2018.07.09 |
docker command basic (756) | 2018.07.09 |
lombok.javac.apt.LombokProcessor could not be initialized. Lombok will not run during this compilation (0) | 2018.06.12 |
- Total
- Today
- Yesterday
- Spring Boot
- GCP
- docker
- docker-machine
- X-Pack
- Redis
- MongoDB
- PubSub
- Netty
- Elasticsearch
- zsh
- AWS
- IntelliJ
- ansible-container
- pymongo
- boot2docker
- kubernetes
- TDD
- 은전한닢
- pycharm
- mecab
- PIP
- Paw
- xpath
- git
- MacOS
- scrapy
- Ansible
- spring #lombok
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |