Docker部署Redis
创始人
2024-11-13 17:07:35

Docker部署Redis

下载Redis镜像

docker pull redis	#下载最新版Redis镜像 (其实此命令就等同于 : docker pull redis:latest ) docker pull redis:xxx	#下载指定版本的Redis镜像 (xxx指具体版本号) 

创建Redis配置文件
启动前需要先创建Redis外部挂载的配置文件 ( /source/redis/conf/redis.conf )
之所以要先创建 , 是因为Redis本身容器只存在 /etc/redis 目录 , 本身就不创建 redis.conf 文件
当服务器和容器都不存在 redis.conf 文件时, 执行启动命令的时候 docker 会将 redis.conf 作为目录创建 , 这并不是我们想要的结果 .

## 创建目录 mkdir -p /source/redis/conf ## 创建文件 touch /source/redis/conf/redis.conf 

在conf下创建redis的配置文件

# bind 192.168.1.100 10.0.0.1 # bind 127.0.0.1 ::1 #bind 127.0.0.1  protected-mode no  port 6379  tcp-backlog 511  requirepass #你的密码  timeout 0  tcp-keepalive 300  daemonize no  supervised no  pidfile /var/run/redis_6379.pid  loglevel notice  logfile ""  databases 30  always-show-logo yes  save 900 1 save 300 10 save 60 10000  stop-writes-on-bgsave-error yes  rdbcompression yes  rdbchecksum yes  dbfilename dump.rdb  dir ./  replica-serve-stale-data yes  replica-read-only yes  repl-diskless-sync no  repl-disable-tcp-nodelay no  replica-priority 100  lazyfree-lazy-eviction no lazyfree-lazy-expire no lazyfree-lazy-server-del no replica-lazy-flush no  appendonly yes  appendfilename "appendonly.aof"  no-appendfsync-on-rewrite no  auto-aof-rewrite-percentage 100 auto-aof-rewrite-min-size 64mb  aof-load-truncated yes  aof-use-rdb-preamble yes  lua-time-limit 5000  slowlog-max-len 128  notify-keyspace-events ""  hash-max-ziplist-entries 512 hash-max-ziplist-value 64  list-max-ziplist-size -2  list-compress-depth 0  set-max-intset-entries 512  zset-max-ziplist-entries 128 zset-max-ziplist-value 64  hll-sparse-max-bytes 3000  stream-node-max-bytes 4096 stream-node-max-entries 100  activerehashing yes  hz 10  dynamic-hz yes  aof-rewrite-incremental-fsync yes  rdb-save-incremental-fsync yes  

最重要需要修改的就是requirepass,一定要设置密码特别是生产环境
创建一个.conf文件,把这些东西复制进去

然后使用

docker run \ -d \ --name redis \ -p 6379:6379 \ --restart unless-stopped \ -v /source/redis/data:/data \ -v /source/redis/conf/redis.conf:/etc/redis/redis.conf \ redis \ redis-server /etc/redis/redis.conf 

启动就行

相关内容

热门资讯

裸辞做“一人公司”,我后悔了 去年这个时候,一位以色列程序员正在东南亚旅行。他顺手把一个在脑子里转了很久的想法做成了产品,一个让任...
南京建成国内首个Pre-6G试... 4月21日,2026全球6G技术与产业生态大会在南京开幕。全息互动技术展台前,一名远在北京的工作人员...
超梵求职受邀参加“2025抖音... 超梵求职受邀参加“2025抖音巨量引擎成人教育行业生态大会”,探讨分享优质内容传播,服务万千学员。 ...
摩托罗拉Razr 2026(R... IT之家 4 月 22 日消息,摩托罗拉宣布新一代 Razr 折叠手机将于 4 月 29 日在美国发...
库克卸任,特纳斯领航:苹果新纪... 苹果首席执行官蒂姆·库克将卸任,硬件工程主管约翰·特纳斯将接任,苹果公司今天宣布此事。 库克将在夏季...