1. 安装REDIS

在安装的时候,使用 docker pull redis 就可以了。

但是 实际上 发现镜像居然拉不下来。

修改了一下 docker 镜像。

image

配置如下:

"registry-mirrors": [
    "https://dockerproxy.com",
    "https://docker.m.daocloud.io",
    "https://docker.mirrors.ustc.edu.cn",
    "http://hub-mirror.c.163.com",
    "https://mirror.ccs.tencentyun.com"
  ]

2.启动REDIS

2.1 创建 redis.conf 文件

我们需要创建 一个 redis.conf 文件,这个文件需要在启动是进行指定。

bind 0.0.0.0
daemonize no 
protected-mode yes
requirepass 123456
port 6379
dir .
maxmemory 512mb
logfile "redis.log"

2.2 启动redis

docker run  -d -p 6380:6379 --name localRedis -v "d:\program\redisdocker\redis.conf:/etc/redis/redis.conf"  -v "d:\program\redisdocker\data:/data"  redis redis-server /etc/redis/redis.conf 

这里的问题是

  1. redis.conf 文件的路径在容器内并不固定,所以需要使用 redis-server /etc/redis/redis.conf进行指定。
  2. 需要挂载配置文件和数据目录文件夹,数据目录 在容器内 为 data
  3. 注意在 redis.conf 中 我们需要将 daemonize 设置为 no, 如果设置成 yes 则启动不了,因为我们在启动容器的时候 指定了 -d 参数,这个参数的意思是后台启动和 daemonize 为yes 冲突了。
  4. 如果不需要密码,我们可以将redis.conf 进行下面的修改。
protected-mode no
#requirepass 123456
posted on 2024-06-16 18:14  自由港  阅读(69)  评论(0编辑  收藏  举报