使用docker搭建redis主從的方法步驟

 一、構建 Docker 環境

1、創建 dockerfile

FROM centos:latest
RUN groupadd -r redis && useradd -r -g redis redis
RUN yum -y update && yum -y install epel-release && yum -y install redis && yum -y install net-tools
EXPOSE 6379

2、構建鏡像

docker build -t docker-test .

3、查看當前鏡像

docker iamges
REPOSITORY  TAG     IMAGE ID    CREATED       SIZE
docker-test  latest   ccebd30e466a  12 minutes ago   396MB
centos    latest   470671670cac  7 weeks ago     237MB

4、查看docker默認的網絡類型

docker network ls
NETWORK ID     NAME        DRIVER       SCOPE
a43e79987e98    bridge       bridge       local
6b73067403dc    host        host        local
b8ad4981e57e    none        null        local

5、創建自定義網絡類型

docker network create --subnet=172.10.0.0/16 haveyb-network

二、搭建 Redis 主從

1、創建 redis-master 容器

docker run -itd --name redis-master --net haveyb-network -p 6380:6379 --ip 172.10.0.2 docker-test

參數解釋:

-i: 以交互模式運行容器,通常與 -t 同時使用

-t: 為容器重新分配一個偽輸入終端,通常與 -i 同時使用

-d: 後臺運行容器,並返回容器ID;

–name: 為創建的容器命名

–net: 指定網絡模式(這裡指定剛才創建的自定義網絡模式)

-p: 端口映射,格式為:主機(宿主)端口:容器端口

–ip: 為容器制定一個固定的ip

後面再指定一下使用的鏡像(這裡使用的就是剛才創建的鏡像 docker-test)

2、查看運行中的容器

docker ps -a
CONTAINER ID    IMAGE     COMMAND       CREATED
dc9344bbd25f   docker-test   "/bin/bash"     2 minutes ago
 
STATUS      PORTS             NAMES
Up 2 minutes   0.0.0.0:6380->6379/tcp    redis-master

註:查看某個網絡下容器的ip地址

docker network inspect haveyb-network

3、創建 redis-slave1、redis-slave2 容器

docker run -itd --name redis-slave1 --net haveyb-network -p 6381:6379 --ip 172.10.0.3 docker-test
docker run -itd --name redis-slave2 --net haveyb-network -p 6382:6379 --ip 172.10.0.4 docker-test

4、配置 redis-master 容器

(1)進入redis-master 容器

docker exec -it redis-master bash

註:退出容器 `exit`

(2)修改redis.conf 配置文件

vi /etc/redis.conf

(3)修改參數 bind 127.0.0.1 為 0.0.0.0

bind 0.0.0.0

(4)設置主redis 密碼

requirepass YourPasswordSettings

(5)啟動主redis

redis-server /etc/redis.conf &

(6)redis-cli

redis-cli
auth yourPasswordSettings

5、配置 redis-slave1

(1)進入redis-slave1 容器

docker exec -it redis-slave1 bash

(2)修改redis.conf 配置文件

vi /etc/redis.conf

(3)修改參數 bind 127.0.0.1 為 0.0.0.0

bind 0.0.0.0

(4)設置 masterauth,添加以下代碼(主redis設置密碼後,從redis連接需要此參數驗權)

masterauth yourPasswordSettings

(5)設置 slaveof (設置主 redis 的 ip 和 port)

slaveof 172.10.0.2 6379

(5)啟動從redis

redis-server /etc/redis.conf &

(6)redis 客戶端

redis-cli

 6、配置 redis-slave2

同配置 redis-slave1

7、在redis -cli中執行 `info replication` 可以查看主從信息

 redis-master

127.0.0.1:6379> info replication
# Replication
role:master
connected_slaves:2
slave0:ip=172.10.0.3,port=6379,state=online,offset=3105,lag=1
slave1:ip=172.10.0.4,port=6379,state=online,offset=3105,lag=1
master_replid:a3a43b1957bc5b9f18cb3004301990085e49b0d1
master_replid2:0000000000000000000000000000000000000000
master_repl_offset:3105
second_repl_offset:-1
repl_backlog_active:1
repl_backlog_size:1048576
repl_backlog_first_byte_offset:1
repl_backlog_histlen:3105
127.0.0.1:6379> 

redis-slave1

127.0.0.1:6379> info replication 
# Replication
role:slave
master_host:172.10.0.2
master_port:6379
master_link_status:up
master_last_io_seconds_ago:1
master_sync_in_progress:0
slave_repl_offset:3203
slave_priority:100
slave_read_only:1
connected_slaves:0
master_replid:a3a43b1957bc5b9f18cb3004301990085e49b0d1
master_replid2:0000000000000000000000000000000000000000
master_repl_offset:3203
second_repl_offset:-1
repl_backlog_active:1
repl_backlog_size:1048576
repl_backlog_first_byte_offset:1
repl_backlog_histlen:3203
127.0.0.1:6379> 

8、在 redis-master 中寫入key,redis-slave1 和 redis-slave2 已經可以獲取瞭

到此這篇關於使用docker搭建redis主從的方法步驟的文章就介紹到這瞭,更多相關docker搭建redis主從內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: