docker run redis

Posted code-jun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker run redis相关的知识,希望对你有一定的参考价值。

#拉取 Redis 镜像
C:UsersWYJ>docker pull redis
Using default tag: latest
latest: Pulling from library/redis
683abbb4ea60: Already exists
259238e792d8: Pull complete
78399601c709: Pull complete
f397da474601: Pull complete
c57de4edc390: Pull complete
b2ea05c9d9a1: Pull complete
Digest: sha256:5534b92530acc653f0721ebfa14f31bc718f68bf9070cbba25bb00bc7aacfabb
Status: Downloaded newer image for redis:latest

#查看拉取的镜像
C:UsersWYJ>docker images
REPOSITORY                   TAG                 IMAGE ID            CREATED             SIZE
redis                        latest              71a81cb279e3        4 days ago          83.4MB

#运行镜像容器
C:UsersWYJ>docker run -p 6379:6379 --name redis -v /d/docker/data/redis:/data  -d redis redis-server --appendonly yes
f7033e3efc840c921a125c8cdeb8c1747a75e7e950444c4265bf3d2fa0c3df7f

#查看运行容器日志
C:UsersWYJ>docker logs redis
1:C 01 Jul 07:58:28.663 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
1:C 01 Jul 07:58:28.663 # Redis version=4.0.10, bits=64, commit=00000000, modified=0, pid=1, just started
1:C 01 Jul 07:58:28.663 # Configuration loaded
1:M 01 Jul 07:58:28.666 * Running mode=standalone, port=6379.
1:M 01 Jul 07:58:28.667 # 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 01 Jul 07:58:28.667 # Server initialized
1:M 01 Jul 07:58:28.667 # 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 01 Jul 07:58:28.668 * Ready to accept connections

#查看运行的容器
C:UsersWYJ>docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES
f7033e3efc84        redis               "docker-entrypoint.s…"   17 seconds ago      Up 15 seconds       0.0.0.0:6379->6379/tcp   redis

#进入容器内
C:UsersWYJ>docker exec -it redis redis-cli
127.0.0.1:6379> 

 

以上是关于docker run redis的主要内容,如果未能解决你的问题,请参考以下文章

docker启动redis

Docker快速构建Redis集群(cluster)

docker build 命令

docker 搭建 MySQL8 主从

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?(代码

Flutterflutter doctor 报错Android license status unknown. Run `flutter doctor --android-licenses‘(代码片段