Linux
DRBD 未在 Fresh 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; } }
在cyberx86的幫助下,我進行了搜尋並找到了這個,它有效。
$ sudo apt-get install linux-image-extra-virtual $ sudo depmod -a $ sudo modprobe drbd
引用: http: //www.mail-archive.com/ubuntu-cloud@lists.ubuntu.com/msg00588.html