ONTAP 9.13

to English version

MetroCluster構成でのFabricPoolミラーの置き換え

MetroCluster構成でFabricPoolミラーのオブジェクトストアの1つが破棄されたか完全に使用できなくなった場合、オブジェクトストアがまだミラーでない場合はミラーにしてから、破損したオブジェクトストアをFabricPoolミラーから削除し、新しいオブジェクトストア ミラーをFabricPoolに追加できます。

手順
  1. 破損したオブジェクトストアがまだミラーでない場合は、 storage aggregate object-store modify コマンドを使用してオブジェクトストアをミラーにします。

    storage aggregate object-store modify -aggregate -aggregate fp_aggr1_A01 -name mcc1_ostore1 -mirror-type mirror
  2. storage aggregate object-store unmirror コマンドを使用して、FabricPoolからオブジェクトストア ミラーを削除します。

    storage aggregate object-store unmirror -aggregate <aggregate name> -name mcc1_ostore1
  3. storage aggregate object-store modify コマンドで -force-tiering-on-metrocluster true オプションを指定すると、ミラー データ ストアの削除後にプライマリー データ ストアで階層化を強制的に再開できます。

    ミラーがないと、MetroCluster構成のレプリケーション要件が満たされません。

    storage aggregate object-store modify -aggregate <aggregate name> -name mcc1_ostore1 -force-tiering-on-metrocluster true
  4. storage aggregate object-store config create コマンドを使用して、置き換え用のオブジェクトストアを作成します。

    storage aggregate object-store config create -object-store-name mcc1_ostore3 -cluster clusterA -provider-type SGWS -server <SGWS-server-1> -container-name <SGWS-bucket-1> -access-key <key> -secret-password <password> -encrypt <true|false> -provider <provider-type> -is-ssl-enabled <true|false> ipspace <IPSpace>
  5. storage aggregate object-store mirror コマンドを使用して、FabricPoolミラーにオブジェクトストア ミラーを追加します。

    storage aggregate object-store mirror -aggregate aggr1 -name mcc1_ostore3-mc
  6. storage aggregate object-store show コマンドを使用して、オブジェクトストア情報を表示します。

    storage aggregate object-store show -fields mirror-type,is-mirror-degraded
    aggregate      object-store-name mirror-type     is-mirror-degraded
    -------------- ----------------- ------------- ------------------
    aggr1          mcc1_ostore1-mc    primary           -
                   mcc1_ostore3-mc    mirror          true
  7. storage aggregate object-store show-resync-status コマンドを使用して、ミラー再同期ステータスを監視します。

    storage aggregate object-store show-resync-status -aggregate aggr1
                                                      Complete
          Aggregate    Primary        Mirror          Percentage
          ---------    -----------    ----------      ----------
          aggr1        mcc1_ostore1-mc mcc1_ostore3-mc   40%
Top of Page