Chinaunix首页 | 论坛 | 博客
  • 博客访问: 49069
  • 博文数量: 8
  • 博客积分: 320
  • 博客等级: 二等列兵
  • 技术积分: 90
  • 用 户 组: 普通用户
  • 注册时间: 2009-07-29 11:20
文章分类

全部博文(8)

文章存档

2011年(5)

2010年(2)

2009年(1)

我的朋友

分类: 系统运维

2011-09-28 23:10:01

在 HP 9000 服务器上镜像引导磁盘:
要设置镜像的根配置,必须向根卷组中添加磁盘,镜像其中的所有根逻辑卷,然后将其设置为可引导。在本示例中,要添加的磁盘路径为 0/1/1/0.0x1.0x0,其设备专用文件名为 /dev/rdisk/disk4 和 /dev/disk/disk4。
1. 使用带 -e 选项的 insf 命令确保设备文件位于适当的位置。例如:
# insf -e -H 0/1/1/0.0x1.0x0
现在,该磁盘应该有以下设备文件:
/dev/[r]disk/disk4(表示整个磁盘)
2. 使用带 -B 选项的 pvcreate 创建物理卷。
# pvcreate -B /dev/rdisk/disk4
3. 使用 vgextend 将物理卷添加到现有的根卷组:
# vgextend /dev/vg00 /dev/disk/disk4
4. 使用 mkboot 命令将引导实用程序放在引导区域中:
# mkboot /dev/rdisk/disk4
5. 使用 mkboot 命令在磁盘引导区域中添加自动引导文件。如果希望仅当达不到 Quorum 时
从此磁盘引导,可以使用备用字符串“hpux –lq”禁用 Quorum 检查:
# mkboot -a "hpux" /dev/rdisk/disk4
注释: 此示例包括了创建主交换逻辑卷的镜像副本。主交换镜像不一定位于特定磁盘或
特定位置,但必须为其分配连续磁盘空间。主交换的建议镜像策略是,禁用“镜像写高速缓
存”和“镜像一致性恢复”机制。
镜像主交换时(并且主交换设备也作为转储区域),必须确保“镜像写高速缓存”和“镜像一
致性恢复”设置为引导时处于禁用状态,以避免丢失转储。要重置这些选项,请以维护模式
重新引导系统,然后使用带 -M n 和 -c n 选项的 lvchange 命令。
6. 使用 lvextend 命令将 vg00(根卷组)中的每个逻辑卷镜像到指定的物理卷。必须按照
在原始引导磁盘上配置逻辑卷的相同顺序扩展逻辑卷。使用带 -v 选项的 pvdisplay 命令
确定逻辑卷列表及其顺序。例如:
# pvdisplay -v /dev/disk/disk0 | grep 'current.*0000 $'
00000 current /dev/vg00/lvol1 00000
00038 current /dev/vg00/lvol2 00000
00550 current /dev/vg00/lvol3 00000
00583 current /dev/vg00/lvol4 00000
00608 current /dev/vg00/lvol5 00000
00611 current /dev/vg00/lvol6 00000
00923 current /dev/vg00/lvol7 00000
01252 current /dev/vg00/lvol8 00000
在本示例中,按如下方式镜像逻辑卷:
# lvextend –m 1 /dev/vg00/lvol1 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time. Please wait ....
# lvextend –m 1 /dev/vg00/lvol2 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time. Please wait ....
# lvextend –m 1 /dev/vg00/lvol3 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time. Please wait ....
# lvextend –m 1 /dev/vg00/lvol4 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time. Please wait ....
# lvextend –m 1 /dev/vg00/lvol5 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time. Please wait ....
# lvextend –m 1 /dev/vg00/lvol6 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time. Please wait ....
# lvextend –m 1 /dev/vg00/lvol7 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time. Please wait ....
# lvextend –m 1 /dev/vg00/lvol8 /dev/disk/disk4
The newly allocated mirrors are now being synchronized.
This operation will take some time.Please wait ....
7. 更新根卷组信息:
# lvlnboot -R /dev/vg00
8. 验证镜像的磁盘是否显示为引导磁盘,以及是否两个磁盘上都有引导逻辑卷、根逻辑卷和
交换逻辑卷:
# lvlnboot -v
9. 指定镜像磁盘作为非易失性存储器中的备用引导路径:
# setboot –a 0/1/1/0.0x1.0x0
10. 针对新的引导磁盘使用 vi 或其他文本编辑器在 /stand/bootconf 中添加一行:
# vi /stand/bootconf
l /dev/disk/disk4
其中,字母“l”(L 的小写形式)代表 LVM。

阅读(1184) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~