DRBD 无法在全新 AWS 64 位 Ubuntu 11.10 上启动

DRBD 无法在全新 AWS 64 位 Ubuntu 11.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.

在两个版本上创建了一个 250gb 卷,附加为 /dev/xvdm

这是我的配置文件:

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;
        }
} 

答案1

在 cyberx86 的帮助下,我进行了搜索并找到了这个,它很有用。

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

引用:http://www.mail-archive.com/[电子邮件保护]/msg00588.html

相关内容