Search:

Search all manuals
Search this manual
Manual
Couchbase Server マニュアル 2.0
Community Wiki and Resources
Couchbase Server 2.0をダウンロード
Couchbase 開発者ガイド 2.0
クライアントライブラリ
Couchbase Server フォーラム
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
8.7 クラスタの管理
Chapter Sections
Chapters

8.7.8. 自動フェールオーバ設定の取得

クラスタの自動フェールオーバの設定を取得するには、このリクエストを使用します。自動フェールオーバは、すべてのクラスタのグローバル設定です。この値を読み取るには認証が必要です。例

shell> curl -u Administrator:letmein http://localhost:8091/settings/autoFailover

成功した場合、Couchbase Serverは、クラスタの自動フェールオーバの設定を返します:

JSON
{"enabled":false,"timeout":30,"count":0}

次のパラメータおよび設定が表示されます。

発生する可能性のあるエラーは次のとおりです。

HTTP/1.1 401 Unauthorized
This endpoint isn't available yet.
HTTP Request
GET /settings/autoFailover HTTP/1.1
Host: localhost:8091
Authorization: Basic YWRtaW46YWRtaW4=
Accept: */*
HTTP Response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: nnn
{ "enabled": false, "timeout": 30, "count": 0 }