diff --git a/ja/learn/admin/REST/rest-cluster-details.dita b/ja/learn/admin/REST/rest-cluster-details.dita index 056f537..68abfff 100644 --- a/ja/learn/admin/REST/rest-cluster-details.dita +++ b/ja/learn/admin/REST/rest-cluster-details.dita @@ -1,50 +1,55 @@ - - Viewing cluster details - Cluster details are retrieved with GET /pools/default HTTP method and URI. + + クラスタの詳細閲覧 + クラスタの詳細はGET /pools/default HTTPメソッドとURIを使用して取得します。 -
Description -

At the highest level, the response for this request describes a cluster, as mentioned - previously. The response contains a number of properties which define attributes of the - cluster and controllers which enable you to make certain requests of the - cluster.

+
説明 +

+ 前述のように、最も高いレベルでは、このリクエストのレスポンスはクラスタについて記述します。 + レスポンスにはクラスタやクラスタの特定のリクエストを行うことができるようにするためのcontrollersの属性を定義する多くのプロパティが含まれています。 +

- Since buckets could be renamed and there is no way to determine the name for the default - bucket for a cluster, the system attempts to connect non-SASL, non-proxied to a bucket - named "default". If it does not exist, Couchbase Server drops the connection. -

Do not rely on the server list returned by this request to connect to a Couchbase Server. - Instead, issue an HTTP GET call to the bucket to get the node list for that specific - bucket.

+ + bucketの名前が変更された可能性があり、クラスタのデフォルトbucketの名前を判断する術がない場合、システムは非SASL、非プロキシで"default"という名前のbucketに接続しようとします。 + もし存在しない場合、Couchbase Serverは接続を切断します。 + +

+ Couchbase Serverの接続において、このリクエストで返ってくるサーバリストに依存しないでください。 + 代わりに、bucketにHTTP GETコールして特定のbucketのノードのリストを取得することで発行してください。 +

-
HTTP method and URI +
HTTP メソッドとURI GET /pools/default -

The controllers in the server list all accept parameters as - x-www-form-urlencoded, and perform the following functions:

+

+ サーバリストのコントローラは全てx-www-form-urlencodedをパラメータとして受け取り、次の関数を使用して実行します: +

- Controller parameters + コントローラのパラメータ - Function - Description + 関数 + 説明 ejectNode - Eject a node from the cluster. Required parameter: “otpNode”, the - node to be ejected. + + クラスタからノードを外します。ノードを外すには “otpNode” パラメータが必要です。 + addNode - Add a node to this cluster. Required parameters: “hostname”, - “user” and “password”. Username and password are for the - Administrator for this node. + + クラスタにノードを追加します。“hostname”、“user”および“password”パラメータが必要です。 + ユーザ名とパスワードはノードの管理者のものです。 + rebalance @@ -56,34 +61,38 @@ known nodes and the node to be ejected must be supplied. If the list does not match the set of nodes, the request will fail with an HTTP 400 indicating a mismatch. Note rebalance progress is available via - the rebalanceProgress uri. + the rebalanceProgress uri. + failover - Failover the vBuckets from a given node to the nodes which have - replicas of data for those vBuckets. The “otpNode” parameter is - required and specifies the node to be failed over. + + 指定のノードからvBusketsのデータのレプリカを持つノードへvBusketsをフェールオーバします。 + “otpNode”パラメータが必須でフェイルオーバするノードを指定します。 + reAddNode - The “otpNode” parameter is required and specifies the node to be - re-added. + + “otpNode”パラメータが必須で再追加するノードを指定します。 + stopRebalance - Stop any rebalance operation currently running. This takes no - parameters. + + 実行中のリバランスのオペレーションを停止します。パラメータは受け取りません。 +
-
Syntax -

Curl request syntax:

+
シンタックス +

Curlリクエストシンタックス:

curl -u [admin]:[password] http://[localhost]:8091/pools/default -

HTTP request syntax:

+

HTTPリクエストシンタックス:

GET /pools/default Host: localhost:8091 Authorization: Basic xxxxxxxxxxxxxxxxxxx @@ -92,14 +101,14 @@ X-memcachekv-Store-Client-Specification-Version: 0.1
-
Example -

To send a request using curl:

+
+

curlを使用してリクエストを送信する場合:

curl -u Administrator:password http://10.5.2.117:8091/pools/default
-
Response +
レスポンス