web-dev-qa-db-ja.com

DRBDがFreshAWS64ビットUbuntu11.10で起動しない

私はこれらの指示に正確に従いました(11.04と11.10を使用してこれを最初から実行し、AMIを使用して同じ結果を出しました)

(11.04を使用)コミュニティAMI:AMI-e016ca89 https://help.ubuntu.com/11.04/serverguide/C/drbd.html および(11.10を使用)コミュニティAMI:AMI-baba68d3 https:/ /help.ubuntu.com/11.10/serverguide/C/drbd.html

プロセスを開始すると、次のエラーが発生します。

root@drbd01:~# Sudo /etc/init.d/drbd start
 * Starting DRBD resources                                                                                            Can not load the drbd module.

/ dev/xvdmとして接続されたボリューム(両方のバージョン)250gbボリュームを作成しました

これが私の設定ファイルです:

global { usage-count no; }
common { syncer { rate 100M; } }
resource r0 {
        protocol C;
        startup {
                wfc-timeout  15;
                degr-wfc-timeout 60;
        }
        net {
                cram-hmac-alg sha1;
                shared-secret "secret";
        }
        on drbd01 {
                device /dev/drbd0;
                disk xvdm;
                address -MY AWS PUBLIC ELASTIC IP WAS HERE-:7788;
                meta-disk internal;
        }
        on drbd02 {
                device /dev/drbd0;
                disk /dev/xvdm;
                address -MY AWS PUBLIC ELASTIC IP WAS HERE-:7788;
                meta-disk internal;
        }
} 
3
Mike Curry

Cyberx86の助けを借りて、私は検索を行い、これが機能することを発見しました。

$ Sudo apt-get install linux-image-extra-virtual
$ Sudo depmod -a
$ Sudo modprobe drbd

引用: http://www.mail-archive.com/[email protected]/msg00588.html

4
Mike Curry