diff options
author | David Storch <david.storch@10gen.com> | 2013-10-18 10:36:48 -0400 |
---|---|---|
committer | David Storch <david.storch@10gen.com> | 2013-10-18 10:39:19 -0400 |
commit | 8051e469a4d794d09df658b8f6dbf2d95974a1ce (patch) | |
tree | 990ee28057ecec1e7aa55cf918dd309a5b7e83a2 /debian | |
parent | 78a5cc81af2209e10e1357a41e02f1689b60ef1e (diff) | |
download | mongo-8051e469a4d794d09df658b8f6dbf2d95974a1ce.tar.gz |
SERVER-11024 replace master/slave conf file examples with replset
Diffstat (limited to 'debian')
-rw-r--r-- | debian/mongod.conf | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/debian/mongod.conf b/debian/mongod.conf index 4d9dd562793..75d0c8cf406 100644 --- a/debian/mongod.conf +++ b/debian/mongod.conf @@ -66,15 +66,10 @@ bind_ip = 127.0.0.1 # Replication Options -# in master/slave replicated mongo databases, specify here whether -# this is a slave or master -#slave = true -#source = master.example.com -# Slave only: specify a single database to replicate -#only = master.example.com -# or -#master = true -#source = slave.example.com - -# in replica set configuration, specify the name of the replica set -# replSet = setname +# in replicated mongo databases, specify the replica set name here +#replSet=setname +# maximum size in megabytes for replication operation log +#oplogSize=1024 +# path to a key file storing authentication info for connections +# between replica set members +#keyFile=/path/to/keyfile |