7)常用安装(3) - 安装redis

2020-11-16  本文已影响0人  21号新秀_邓肯

1.从docker hub上(阿里云加速器)拉取redis镜像到本地标签为3.2

image.png

2. 使用redis3.2镜像创建容器(也叫运行镜像)

1. 使用镜像

docker run -p 6379:6379 -v /zzyyuse/myredis/data:/data -v /zzyyuse/myredis/conf/redis.conf:/usr/local/etc/redis/redis.conf  -d redis:3.2 redis-server /usr/local/etc/redis/redis.conf --appendonly yes

2. 新建redis.conf文件

在主机/zzyyuse/myredis/conf/redis.conf目录下新建redis.conf文件
vim /zzyyuse/myredis/conf/redis.conf/redis.conf

3. 测试redis-cli连接上来

 docker exec -it 运行着Rediis服务的容器ID redis-cli
image.png

4.测试持久化文件生成

image.png
上一篇下一篇

猜你喜欢

热点阅读