のCentOS 7.3上でDRBDをインストールするには、このガイドに従ってください:CentOS 7でDRBDのリソースを作成できないのはなぜですか?
http://www.learnitguide.net/2016/07/how-to-install-and-configure-drbd-on-linux.html
このステップの後:
resource testdata1 {
protocol C;
on node1 {
device /dev/drbd0;
disk /dev/sdb;
address 172.16.2.61:7788;
meta-disk internal;
}
on node2 {
device /dev/drbd0;
disk /dev/sdb;
address 172.16.2.62:7788;
meta-disk internal;
}
}
実行すると:
drbdadm create-md testdata1
ガットメッセージ:
'testdata1' not defined in your config (for this host).
を
/etc/hosts
は次のとおりです。
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
172.16.2.61 node1.clusterbr.int node1
172.16.2.62 node2.clusterbr.int node2
172.16.2.60 dbip.clusterbr.int node1
/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";
問題の理由は何ですか?
これらの設定ファイルは、両方のホストされていますか? –
@RamanSailopalあなたは '/ etc/hosts'の内容を意味しますか?はい。 –
いいえ、私はdrbdファイルを意味する? –