drbdadm up r0 drbdadm primary r0
It seems all is good right up to the last command:5.18.3. Enabling stacked resources
To enable a stacked resource, you first enable its lower-level resource and promote it:
drbdadm up r0 drbdadm primary r0As with unstacked resources, you must create DRBD meta data on the stacked resources. This is done using the following command:
# drbdadm create-md --stacked r0-UThen, you may enable the stacked resource:
# drbdadm up --stacked r0-U # drbdadm primary --stacked r0-UAfter this, you may bring up the resource on the backup node, enabling three-node replication:
# drbdadm create-md r0-U # drbdadm up r0-U
resource informer {Any suggestions on what I am missing in this picture?
net {
protocol C;
}
device /dev/drbd11;
meta-disk internal;
on trk-kvm-01 {
address 10.10.1.125:7789;
disk /dev/trk-kvm-01-vg/informer;
}
on trk-kvm-02 {
address 10.10.1.126:7789;
disk /dev/trk-kvm-02-vg/informer;
}
}
resource informer-U {
net {
protocol A;
}
stacked-on-top-of informer {
device /dev/drbd110;
address 10.10.2.126:7789;
}
on trk-bkp-01 {
device /dev/drbd110;
disk /dev/ubuntu-vg/informer;
address 10.10.2.127:7789;
meta-disk internal;
}
}