目次

概要

ESXi5.xにおけるストレージ関連のトラブル対処

Call "HostDatastoreSystem.QueryVmfsDatastoreCreateOptions" for object "datastorename" on vCenter Server "servername" failed.

  • 原因
    ストレージ上にパーティションが作成されている場合に発生するエラー。(たの理由ででも出るかも)
  • 対処方法
    ESXiに付属するfdiskコマンドにてパーティションを削除する。
  • 対処手順
    ESXiのfdiskにてパーティションを削除するには、ESXi上でのディスクの固有IDを把握する必要がある。
    [構成]→[ストレージアダプタ]を開き、ディスクが接続されているストレージアダプタを選択し、詳細の[名前]欄に表示される内容が固有IDとなる。

    固有IDを把握できたら、以下のコマンドを実行する。

    # fdisk -u /vmfs/devices/disks/[固有ID]

    パーティションテーブルを確認し、削除する。

  • # fdisk -u /vmfs/devices/disks/t10.AMCC____A13L2C3C9DFD9F00D6E2
    
    The number of cylinders for this disk is set to 3889.
    There is nothing wrong with that, but this is larger than 1024,
    and could in certain setups cause problems with:
    1) software that runs at boot time (e.g., old versions of LILO)
    2) booting and partitioning software from other OSs
      (e.g., DOS FDISK, OS/2 FDISK)
    
    Command (m for help): p
    
    Disk t10.AMCC____A13L2C3C9DFD9F00D6E2: 31.9 GB, 31988908032 bytes
    255 heads, 63 sectors/track, 3889 cylinders, total 62478336 sectors
    Units = sectors of 1 * 512 = 512 bytes
    
    Device Boot      Start         End      Blocks  Id System
    t10.AMCC____A13L2C3C9DFD9F00D6E2p1   *        63   1028159    514048+  83  Linux
    t10.AMCC____A13L2C3C9DFD9F00D6E2p2       1028160  17816084   8393962+  82  Linux swap
    t10.AMCC____A13L2C3C9DFD9F00D6E2p3      17816085  62524979  22354447+  83  Linux
    
    Command (m for help): d
    Partition number (1-4): 1
    
    【以下、繰り返し削除】
    
    Command (m for help): p
    
    Disk t10.AMCC____A13L2C3C9DFD9F00D6E2: 31.9 GB, 31988908032 bytes
    255 heads, 63 sectors/track, 3889 cylinders, total 62478336 sectors
    Units = sectors of 1 * 512 = 512 bytes
    
    Device Boot      Start         End      Blocks  Id System
    
    Command (m for help): w
    The partition table has been altered!
    
    Calling ioctl() to re-read partition table

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS