On this page本页内容
replSetGetConfig¶Returns a document that describes the current configuration of the replica set.
To run, replSetGetConfig must be issued against the admin database and has the following syntax:语法如下所示:
replSetGetConfig |
any | Any value |
| commitmentStatus | boolean | Optional. Specify You can only specify
|
comment |
any |
A comment can be any valid BSON type (string, integer, object, array, etc).
|
The mongo shell provides the rs.conf() method that wraps the replSetGetConfig command:
The following is an example output of the replSetGetConfig command run with commitmentStatus: true on the primary:
config |
The replica set configuration. For description of each configuration settings, see Replica Set Configuration. |
| commitmentStatus | A boolean that indicates whether the most recent replica set configuration has been committed; i.e.
If If |
ok |
A number that indicates whether the command has succeeded (1) or failed (0). |
operationTime$clusterTime |
Returned with every command for a replica set. See db.adminCommand Response for details. |
See also参阅