diff --git a/ja/learn/admin/REST/rest-cluster-addnodes.dita b/ja/learn/admin/REST/rest-cluster-addnodes.dita index ad7cef7..651dab3 100644 --- a/ja/learn/admin/REST/rest-cluster-addnodes.dita +++ b/ja/learn/admin/REST/rest-cluster-addnodes.dita @@ -1,20 +1,22 @@ - - Adding nodes to clusters - Nodes are added to clusters with the POST /controller/addNode HTTP method and URI. + + クラスターへのノードの追加 + POST /controller/addNode HTTPメソッドとURIを使用してクラスターにノードを追加します。 -
HTTP method and URI +
HTTPメソッドとURI POST /controller/addNode
-
Syntax -

This is a REST request made to a Couchbase cluster to add a server node to the cluster. A new - node is add with the RESTful endpoint server_ip:port/controller/addNode. - The administrative username and password parameters are required.

+
シンタックス +

+ これはCouchbaseクラスタがサーバノードをクラスタに追加するためのRESTリクエストです。 + 新しいノードはRESTfulエンドポイント server_ip:port/controller/addNode を使用して追加されます。 + 管理権限のあるユーザ名とパスワードパラメータが必要です。 +

curl -u [admin]:[password] @@ -23,11 +25,12 @@ curl -u [admin]:[password]
-
Example -

The following example request adds a server node, 10.2.2.64, to the cluster at - 10.2.2.60:8091. The POST method, controller/addNode, IP address for the - new server, and administrative credentials are provided. Since the POST method is the - default, it is not required in the request.

+
+

+ 次の例のリクエストではサーバノード、10.2.2.64を10.2.2.60:8091のクラスタに追加します。 + POSTメソッド controller/addNode、 新しいサーバのIPアドレスと管理者権限の情報を指定します。 + POSTメソッドはデフォルトなので、このリクエストは必須ではありません。 +

curl -u admin:password \ 10.2.2.60:8091/controller/addNode \ @@ -35,10 +38,10 @@ curl -u [admin]:[password]
-
Response +
レスポンス -

If successful, Couchbase Server responds:

+

成功した場合のCouchbase Serverのレスポンス:

HTTP/1.1 200 OK {"otpNode":"ns_1@10.4.2.6"}