mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
3.5 KiB
3.5 KiB
如何在 RHEL 上设置 Linux RAID 1
设置 Linux RAID 1
配置 LINUX RAID 1 非常重要,因为它提供冗余。
RAID 分区拥有高级功能,如冗余和更好的性能。所以让我们来说下如何实现 RAID,以及让我们来看看不同类型的 RAID:
■ RAID 0(分条)磁盘组合在一起,形成一个大型驱动器。这以可用性为代价提供了更好的性能。如果 RAID 中的任何一块磁盘出现故障,则整个磁盘集将无法使用。最少需要两块磁盘。
■ RAID 1(镜像)磁盘从一个复制到另一个,允许冗余。如果一块磁盘发生故障,则另一块磁盘接管,从原始磁盘获取数据的完整的副本。这里的缺点是写入时间慢。最少需要两块磁盘。
■ RAID 5(带奇偶校验的分条)磁盘类似于 RAID 0,并且连接在一起以形成一个大型驱动器。这里的区别是,25% 的磁盘用于奇偶校验位,这允许在单个磁盘发生故障时恢复磁盘。最少需要三块盘。
让我们继续进行 Linux RAID 1 配置。
安装 Linux RAID 1 的要求:
-
系统中应该安装了 mdam,请用下面的命令确认。
[root@rhel1 ~]# rpm -qa|grep -i mdadm mdadm-3.2.2-9.el6.x86_64 [root@rhel1 ~]#
-
系统应该连接了 2 块磁盘。
因此创建两个分区,一个磁盘一个(sdc、sdd),每个分区占据整块磁盘。
Disk /dev/sdc: 1073 MB, 1073741824 bytes 255 heads, 63 sectors/track, 130 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: 0x67cc8cfb Device Boot Start End Blocks Id System /dev/sdc1 1 130 1044193+ 83 Linux Disk /dev/sdd: 1073 MB, 1073741824 bytes 255 heads, 63 sectors/track, 130 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: 0x0294382b Device Boot Start End Blocks Id System /dev/sdd1 1 130 1044193+ 83 Linux
作者简介:
大家好!我是 Manmohan Mirkar。我很高兴你们在这里!我在 10 多年前开始使用 Linux,我从来没有想过我会到今天这个地步。我的激情是帮助你们获取 Linux 知识。谢谢你们在这!
via: http://www.linuxroutes.com/linux-raid-1/
作者:Manmohan Mirkar 译者:geekpi 校对:校对者ID