1 使用docker下载redis镜像,默认下载最redis最新版本
docker pull redis
2 下载完毕后分别创建/home/docker/redis/data、redis-6388-data、redis-6380-data、redis-6381-data、sentinel-26388-data、sentinel-26380-data、sentinel-26381-data这十个文件夹
注:master不要使用6379端口避免与服务器Redis端口冲突,导致运行容器失败
[root@localhost ~]# cd /home
[root@localhost home]# mkdir docker
[root@localhost home]# cd docker
[root@localhost docker]# mkdir redis
[root@localhost docker]# cd redis
[root@localhost redis]# mkdir redis-6388-data
[root@localhost redis]# mkdir redis-6380-data
[root@localhost redis]# mkdir redis-6381-data
[root@localhost redis]# mkdir sentinel-26388-data
[root@localhost redis]# mkdir sentinel-26380-data
[root@localhost redis]# mkdir sentinel-26381-data
3 再创建redis-6388.conf、redis-6380.conf、redis-6381.conf这三个自定义redis配置文件,用来配置redis,其中redis-6388.conf是master服务器配置文件,redis-6380.conf、redis-6381.conf 是slave服务器配置文件
[root@localhost redis]# touch redis-6388.conf
[root@localhost redis]# touch redis-6380.conf
[root@localhost redis]# touch redis-6381.conf
4 vi编辑自定义redis配置文件,复制下列代码
4.1 redis-6388.conf文件复制:
masterauth 123456
requirepass 123456
这是配置Redis的账号密码,默认不写就行
port 6388
logfile "redis-6388.log"
dir /data
appendonly yes
appendfilename appendonly.aof
4.2 redis-6380.conf文件复制:
port 6380
logfile "redis-6380.log"
dir /data
appendonly yes
appendfilename appendonly.aof
slaveof 42.192.89.207 6388
4.2 redis-6381.conf文件复制:
port 6381
logfile "redis-6381.log"
dir /data
appendonly yes
appendfilename appendonly.aof
slaveof 42.192.89.207 6388
</