クラスターのステータスの評価 - Amazon DocumentDB

クラスターのステータスの評価

AWS Management Consoleまたは AWS CLI を使用して、クラスターのステータスを確認できます。

Using the AWS Management Console

次の手順に従い、AWS Management Console を使用して Amazon DocumentDB クラスターのステータスを確認します。

  1. AWS Management Console にサインインし、Amazon DocumentDB コンソールを次の場所で開きます。https://console.aws.amazon.com/docdb

  2. ナビゲーションペインで [クラスター] を選択します。

  3. [クラスター ID] 列で、関心があるクラスターの名前を探します。次に、クラスターのステータスを確認するには、次に示すように行全体を参照して [ステータス] 列を見つけます。

    アクティブなステータスを示しているサンプルクラスターのクラスターページのスクリーンショット。
Using the AWS CLI

describe-db-clusters オペレーション を使用して、AWS CLI を使用した Amazon DocumentDB クラスターのステータスを確認します。

次のコードでは、クラスター sample-cluster のステータスを確認します。

Linux、macOS、Unix の場合:

aws docdb describe-db-clusters \ --db-cluster-identifier sample-cluster \ --query 'DBClusters[*].[DBClusterIdentifier,Status]'

Windows の場合:

aws docdb describe-db-clusters ^ --db-cluster-identifier sample-cluster ^ --query 'DBClusters[*].[DBClusterIdentifier,Status]'

このオペレーションによる出力は、次のようになります(JSON 形式)。

[ [ "sample-cluster", "available" ] ]