创建目录
创建数据目录
sh
mkdir -p /home/redis/data
配置文件
创建配置目录
sh
mkdir -p /home/redis/conf
添加配置文件
通过 touch
命令,在如上配置目录 /home/redis/conf
下创建 redis.conf
文件
sh
touch /home/redis/conf/redis.conf
修改配置
借助 vim
工具,输入如下命令,查看 redis.cnf
文件,输入 i
进入 insert
模式。
sh
vim /home/redis/conf/redis.conf
参考如下配置,拷贝至编辑窗口,esc
退出 insert
模式,输入:wq
保存退出。
shell
# Redis configuration file example.
################################## INCLUDES ###################################
# include /path/to/local.conf
# include /path/to/other.conf
################################## MODULES ####################################
# loadmodule /path/to/my_module.so
# loadmodule /path/to/other_module.so
################################## NETWORK ####################################
bind *
protected-mode yes
port 6379
tcp-backlog 511
# unixsocket /tmp/redis.sock
# unixsocketperm 700
timeout 0
tcp-keepalive 300
################################# GENERAL #####################################
#daemonize yes
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile ""
# syslog-enabled no
# syslog-ident redis
# syslog-facility local0
databases 20
always-show-logo yes
################################ SNAPSHOTTING ################################
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir ./
################################# REPLICATION #################################
# masterauth <master-password>
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
# repl-ping-slave-period 10
# repl-timeout 60
repl-disable-tcp-nodelay no
# repl-backlog-size 1mb
# repl-backlog-ttl 3600
slave-priority 100
# min-slaves-to-write 3
# min-slaves-max-lag 10
# slave-announce-ip 5.5.5.5
# slave-announce-port 1234
################################## SECURITY ###################################
# requirepass
################################## CLIENTS ####################################
# maxclients 10000
############################# MEMORY MANAGEMENT ###############################
# maxmemory <bytes>
# maxmemory-policy noeviction
# maxmemory-samples 5
############################# LAZY FREEING ####################################
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
############################## APPEND ONLY MODE ###############################
appendonly no
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
aof-use-rdb-preamble no
################################ LUA SCRIPTING ###############################
lua-time-limit 5000
################################ REDIS CLUSTER ###############################
# cluster-enabled yes
# cluster-config-file nodes-6379.conf
# cluster-node-timeout 15000
# cluster-slave-validity-factor 10
# cluster-migration-barrier 1
# cluster-require-full-coverage yes
########################## CLUSTER DOCKER/NAT support ########################
# cluster-announce-ip 10.1.1.5
# cluster-announce-port 6379
# cluster-announce-bus-port 6380
################################## 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
# client-query-buffer-limit 1gb
# proto-max-bulk-len 512mb
hz 10
aof-rewrite-incremental-fsync yes
# lfu-log-factor 10
# lfu-decay-time 1
############################# ACTIVE DEFRAGMENTATION ##########################
# activedefrag yes
# active-defrag-ignore-bytes 100mb
# active-defrag-threshold-lower 10
# active-defrag-threshold-upper 100
# active-defrag-cycle-min 25
# active-defrag-cycle-max 75
启动容器
说明
- --name 启动容器名称
- -p 端口映射
- -v 目录挂载
- --restart always 总是在容器退出时重启
- --privileged=true 使容器拥有root权限
- --appendonly yes 开启 aof 持久化
- --requirepass "password" 指定 redis 连接密码为
password
sh
docker run -d \
--privileged=true \
-p 6379:6379 \
--restart always \
--name redis \
-v /home/redis/conf/redis.conf:/etc/redis/redis.conf \
-v /home/redis/data:/data \
redis redis-server /etc/redis/redis.conf \
--appendonly yes --requirepass "password"
查看容器
查看运行中的所有容器
sh
docker ps -a
打印如下,说明容器启动成功。
shell
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
0f130b20cf00 redis "docker-entrypoint.s…" 5 seconds ago Up 5seconds 0.0.0.0:6379->6379/tcp redis