docker-compose部署redis

编写docker-compose.yml文件

vi docker-compose.yml

文件内容为:

version: '2'
services:
  #redis容器
  redis:
      network_mode: bridge
      #定义主机名
      container_name: test-redis
      #使用的镜像
      image: redis
      #容器的映射端口
      ports:
          - 6379:6379
      command: redis-server /etc/conf/redis.conf
      #定义挂载点
      volumes:
          - ./data:/data
          - ./conf/redis.conf:/etc/conf/redis.conf
      #环境变量
      privileged: true
      environment:
          - TZ=Asia/Shanghai
          - LANG=en_US.UTF-8

编写redis配置文件

创建conf文件夹

mkdir conf

进入conf中编写redis.conf文件

vi redis.conf

文件内容如下:

bind 0.0.0.0
protected-mode no
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300

################################# GENERAL #####################################
daemonize no
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile ""
databases 2

################################ SNAPSHOTTING  ################################
save 1 1
#save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir ./

################################# REPLICATION #################################
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100

################################## SECURITY ###################################
requirepass redis

################################### LIMITS ####################################
maxclients 10000

############################## APPEND ONLY MODE ###############################
appendonly yes
appendfilename "appendonly.aof"
# appendfsync always
appendfsync everysec
# appendfsync no
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes

################################ LUA SCRIPTING  ###############################
lua-time-limit 5000

################################ REDIS CLUSTER  ###############################
cluster-enabled no

################################## SLOW LOG ###################################
slowlog-log-slower-than 10000
slowlog-max-len 128

################################ LATENCY MONITOR ##############################
latency-monitor-threshold 0

############################# EVENT NOTIFICATION ##############################
notify-keyspace-events ""

############################### ADVANCED CONFIG ###############################
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
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes

其中 requirepass 为连接redis的密码
该文件也可从官方提供的配置模板中下载:

curl -O http://download.redis.io/redis-stable/redis.conf

下载完成后注释文件中的bind,并添加protected-mode no

运行

docker-compose up -d --build

检测

可以通过redis的图形化工具RedisDesktopManager连接测试;
也可以进入容器内部用redis客户端测试

docker exec -it test-redis /bin/bash
redis-cli
auth 'redis'

若运行不成功,可查看log

docker logs --tail=300 -f test-redis
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值