阅读量:0
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
启动就行