Note: "permalinks" may not be as permanent as we would like,
direct links of old sources may well be a few messages off.
I am using DRBD 0.7.11 and wanted DRBD to wait to finish
syncing before Heartbeat is started (stop the boot process)
and doesn't seem to work.
cat /etc/drbd.conf:
resource drbd0 {
protocol B;
incon-degr-cmd "halt -f";
startup {
wfc-timeout 120;
degr-wfc-timeout 120;.
}
disk {
on-io-error detach;
}
syncer {
rate 100M;
group 1;
al-extents 257;
}
on node1 {
device /dev/drbd0;
disk /dev/hda3;
address 10.1.1.10:7788;
meta-disk internal;
}
on node2 {
device /dev/drbd0;
disk /dev/hda3;
address 10.1.1.20:7788;
meta-disk internal;
}
}
what's wrong with the drbd.conf?
thanks
~ tilo