Sun Cluster 3.0 12/01 系统管理指南

8.3.4 如何恢复未封装的根 (/) 文件系统 (VERITAS Volume Manager)

按照此过程将一个未封装的根 (/) 文件系统恢复到一个节点。 不应引导正在恢复的节点。 在执行此恢复过程前确保群集正在无故障地运行。


注意:

由于新磁盘的分区必须与故障磁盘完全相同,所以在进行此过程前必须先确定分区方案,并相应地重建文件系统。


  1. 替换要恢复其根文件系统的那个节点上的故障磁盘。

    请参阅服务器所附带的文档,以了解磁盘替换过程。

  2. 引导要恢复的节点。

    • 如果使用 Solaris CD-ROM,请运行以下命令:


      ok boot cdrom -s
      

    • 如果使用 JumpStart 服务器,请运行以下命令:


      ok boot net -s
      

  3. 使用 format(1M) 命令在根磁盘上创建所有的分区和交换。

    重建故障磁盘上的原分区方案。

  4. 使用 newfs(1M) 命令适当创建根 (/) 文件系统和其他文件系统。

    重建故障磁盘上的原文件系统。


    注意:

    确保创建了 /global/.devices/node@nodeid 文件系统。


  5. 在临时安装点上安装根 (/) 文件系统。


    # mount device temp-mountpoint
    

  6. 从备份中恢复根 (/) 文件系统,然后卸载并检查该文件系统。


    # cd temp-mountpoint
    # ufsrestore rvf dump-device
    # rm restoresymtable
    # cd /
    # umount temp-mountpoint
    # fsck raw-disk-device
    

    此时文件系统已恢复。

  7. 在新磁盘上安装新的根块。


    # /usr/sbin/installboot /usr/platform/`uname -矛/lib/fs/ufs/bootblk raw-disk-device
    

  8. 将节点重新引导到单用户模式。

    1. 开始重新引导。


      # reboot -- "-s"

      在此引导过程中,您将看到错误消息或警告消息,其结尾部分是以下指令:


      Type control-d to proceed with normal startup,
      (or give root password for system maintenance):

    2. 键入根口令。

  9. 确定根磁盘组是否位于根磁盘上的单个片上。

    • 如果是,则创建并设置根磁盘组。


      # vxdctl init
      # vxdg init rootdg
      # vxdctl add disk diskslice type=simple
      # vxdisk -f init diskslice type=simple
      # vxdg adddisk diskslice
      # vxdctl enable
      

    • 如果否,则继续执行步骤 10

  10. 使用 scdidadm 命令更新磁盘 ID。


    # scdidadm -R /dev/rdsk/disk-device
    

  11. 按下 CTRL-d 可恢复多用户模式。

    节点重新引导到群集模式下。 群集已经就绪。

8.3.4.1 示例 - 恢复未封装的根 (/) 文件系统 (VERITAS Volume Manager)

下面的示例展示了将未封装的根 (/) 文件系统从磁带设备 /dev/rmt/0 恢复到节点 phys-schost-1 的过程。


[Replace the failed disk and boot the node:]
ok boot cdrom -s
[Use format and newfs to create partitions and file systems]
[Mount the root file system on a temporary mount point:]
# mount /dev/dsk/c0t0d0s0 /a
[Restore the root file system:]
# cd /a
# ufsrestore rvf /dev/rmt/0
# rm restoresymtable
# cd /
# umount /a
# fsck /dev/rdsk/c0t0d0s0
[Install a new boot block:]
# /usr/sbin/installboot /usr/platform/`uname \
-矛/lib/fs/ufs/bootblk /dev/rdsk/c0t0d0s0
[Reboot in single-user mode:]
# reboot -- "-s"
[If the root disk group is on a single slice on the root disk, 
create the new root disk group:]
# vxdctl init
# vxdg init rootdg
# vxdctl add disk c0t0d0s4 type=simple
# vxdisk -f init c0t0d0s4 type=simple
# vxdg adddisk c0t0d0s4
# vxdctl enable
[Update the disk ID:]
# scdidadm -R /dev/rdsk/c0t0d0
[Press CTRL-d to resume in multiuser mode]