# cat /etc/drbd.conf
# You can find an example in /usr/share/doc/drbd.../drbd.conf.example
include "drbd.d/global_common.conf";
include "drbd.d/*.res";
b.配置global_common.conf
# cat /etc/drbd.d/global_common.conf|grep -v "#"
global {
usage-count no; ##是否参加drbd的使用者统计,默认此选项为YES
}
common {
handlers {
}
startup {
}
options {
}
disk {
}
net {
}
}
c.新建res资源配置文件
# vi /etc/drbd.d/drbd.res ##新建一个名为drbd的res资源
resource r1 { ##定义资源组名称为r1
net {
cram-hmac-alg sha1; ##使用sha1加密
shared-secret "123456"; ##生成共享密钥
}
volume 1 { ##定义卷组
device /dev/drbd1; ##逻辑设备路径(建立块设备)
disk /dev/sdb1; ##物理设备路径(用于复制的分区)
meta-disk internal; ##meta data信息存放的方式,该处为内部存储,
即和真实数据放在一起存储
}
on node1 { ##on开头,后面是主机名称(需与uname -n相同)
node-id 0;
address 192.168.10.132:7000; ##设置drbd监听地址和端口
}
on node2 {
node-id 1;
address 192.168.10.133:7000;
}
connection {
host node1 port 7000;
host node2 port 7000;
net {
protocol C;##使用drbd的第三种同步协议,表示收到对方主机写入确认后,则认为写入完成
}
}
}
d.挂载新磁盘
# fdisk /dev/sdb
-----> n
-----> 1
-----> 默认
-----> +300M -----> w