Sun Cluster 3.0 시스템 관리 안내서

8.3.5 요약된 루트(/) 파일 시스템을 복원하는 방법(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-mount-point
  6. 백업에서 루트(/) 파일 시스템을 복원하십시오.


    # cd temp-mount-point
    # ufsrestore rvf dump-device
    # rm restoresymtable
    
  7. 비어 있는 install-db 파일을 작성하십시오.

    이렇게 하면 다음 번 재시동 때 VxVM 설치 모드에 노드를 놓습니다.


    # touch /temp-mount-point/etc/vx/reconfig.d/state.d/install-db
    
  8. /temp-mount-point/etc/system 파일에서 다음 항목을 제거하거나 설명하십시오.


    * rootdev:/pseudo/vxio@0:0
    * set vxio:vol_rootdev_is_volume=1
  9. /temp-mount-point/etc/vfstab 파일을 편집한 후 /dev/dsk/c0t0d0s0와 같은 루트 디스크에 대해 모든 VxVM 마운트 지점을 표준 디스크 디바이스로 대체하십시오.


    Example: 
    Change from-
    /dev/vx/dsk/rootdg/rootvol /dev/md/rdsk/rootdg/rootvol /      ufs   1     no -
     
    Change to-
    /dev/dsk/c0t0d0s0 /dev/rdsk/c0t0d0s0  / ufs   1     no       -
  10. 임시 파일 시스템을 마운트 취소한 후 파일 시스템을 검사하십시오.


    # cd /
    # umount temp-mount-point
    # fsck raw-disk-device
    
  11. 새 디스크에 시동 블록을 설치하십시오.


    # /usr/sbin/installboot /usr/platform/`uname -i`/lib/fs/ufs/bootblk raw-disk-device
  12. 단일 사용자 모드에서 노드를 다시 시동하십시오.


    # reboot -- "-s"
    
  13. scdidadm(1M)을 사용하여 디스크 ID를 갱신하십시오.


    # scdidadm -R /dev/rdsk/c0t0d0
  14. vxinstall을 실행하십시오.


    # vxinstall
    

    디스크를 캡슐화하도록 선택한 후 다시 시동하십시오.

  15. 2류 번호에 다른 시스템과의 충돌이 있는 경우, 글로벌 디바이스를 마운트 취소한 후 디스크 그룹을 가져오십시오.

    • 글로벌 디바이스 파일 시스템을 클러스터 노드에 마운트 취소하십시오.


      # umount /global/.devices/node@nodeid
      
    • 클러스터 노드에 rootdg 디스크 그룹을 가져오십시오.


      # vxdg reminor rootdg 100
      

  16. # shutdown -g0 -i 6 -y
    
    클러스터 모드에서 노드를 시스템 종료하고 다시 시동하십시오.

8.3.5.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
[Create an empty install-db file:]
# touch /a/etc/vx/reconfig.d/state.d/install-db
[Edit /etc/system on the temporary file system and remove or comment out the following entries:]
	# rootdev:/pseudo/vxio@0:0
	# set vxio:vol_rootdev_is_volume=1
[Edit /etc/vfstab on the temporary file system:]
Example: 
Change from-
/dev/vx/dsk/rootdg/rootvol /dev/md/rdsk/rootdg/rootvol / ufs 1 no-
 
Change to-
/dev/dsk/c0t0d0s0 /dev/rdsk/c0t0d0s0  / ufs   1     no       -
[Unmount the temporary file system, then check the file system:]
# cd /
# umount /a
# fsck /dev/rdsk/c0t0d0s0
[Install a new boot block:]
# /usr/sbin/installboot /usr/platform/`uname \
-i`/lib/fs/ufs/bootblk /dev/rdsk/c0t0d0s0
[Reboot in single-user mode:]
# reboot -- "-s"
[Update the disk ID:]
# scdidadm -R /dev/rdsk/c0t0d0
[Run vxinstall:]
# vxinstall
Choose to encapsulate the root disk.
[If there is a conflict in minor number, reminor the rootdg disk group:]
# umount /global/.devices/node@nodeid
# vxdg reminor rootdg 100
# shutdown -g0 -i 6 -y