使用DRBD设置网络RAID1在Debian压缩

使用DRBD在Debian Squeeze上设置网络RAID1

本教程将介绍如何在两台Debian Squeeze系统的DRBD帮助下设置网络RAID1。 DRBD代表D授权的B锁定设备,允许您通过网络镜像块设备。 这对于高可用性设置(如HA NFS服务器 )很有用,因为如果一个节点出现故障,则所有数据仍可从另一个节点获得。

我不会保证这将为您工作!

1初步说明

我将在这里使用两台服务器(都运行Debian Squeeze):

  • server1.example.com (IP地址192.168.0.100
  • server2.example.com (IP地址: 192.168.0.101

两个节点都有一个未分区的第二个驱动器( / dev / sdb ),具有相同的大小(在这个例子中为30GB),我想借助DRBD在网络上镜像(网络RAID1)。

重要的是,两个节点可以通过DNS或通过/ etc / hosts来相互解决。 如果您没有为server1.example.comserver2.example.com创建DNS记录,则可以按如下方式在两个节点上修改/ etc / hosts

server1 / server2:

vi /etc/hosts
127.0.0.1       localhost.localdomain   localhost
192.168.0.100   server1.example.com     server1
192.168.0.101   server2.example.com     server2

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

2同步时间

server1 / server2:

两个节点具有相同的时间非常重要。 因此我们安装ntp软件包:

apt-get install ntp ntpdate

3分区/ dev / sdb

server1 / server2:

现在我们的分区看起来如下:

fdisk -l
root@server1:~# fdisk -l

Disk /dev/sda: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00029d5c

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1        3793    30461952   83  Linux
/dev/sda2            3793        3917      992257    5  Extended
/dev/sda5            3793        3917      992256   82  Linux swap / Solaris

Disk /dev/sdb: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/sdb doesn't contain a valid partition table
root@server1:~#

如您所见, / dev / sdb未分区。 我们改变现在,并在其上创建一个大分区, / dev / sdb1

fdisk /dev/sdb

root @ server1:〜#fdisk / dev / sdb
设备既不包含有效的DOS分区表,也不包含Sun,SGI或OSF disklabel
构建一个新的DOS磁盘标签,磁盘标识符为0x8042e800。
更改将仅保留在内存中,直到您决定编写它们。
之后,当然,以前的内容将无法恢复。

警告:分区表4的无效标志0x0000将被w(rite)修正

警告:DOS兼容模式已弃用。 强烈建议
关闭模式(命令'c')并将显示单位更改为
扇区(命令'u')。

命令(m帮助): < - n
命令行动
e扩展
p主分区(1-4)
< - p
分区号(1-4): < - 1
第一个圆柱体(1-3916,默认为1): < - ENTER
使用默认值1
最后一个圆柱体,+圆柱体或+大小{K,M,G}(1-3916,默认值3916): < - ENTER
使用默认值3916

命令(m为帮助): < - t
所选分区1
十六进制代码(类型L列出代码): < - 83

命令(m为帮助): < - w
分区表已被更改!

调用ioctl()重新读取分区表。
同步磁盘
root @ server1:〜#

现在跑

fdisk -l

再次,您应该在输出中找到/ dev / sdb1

root@server1:~# fdisk -l

Disk /dev/sda: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00029d5c

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1        3793    30461952   83  Linux
/dev/sda2            3793        3917      992257    5  Extended
/dev/sda5            3793        3917      992256   82  Linux swap / Solaris

Disk /dev/sdb: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x78f21e78

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1        3916    31455238+  83  Linux
root@server1:~#
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏