diff options
author | Stephen Benjamin <stbenjam@redhat.com> | 2013-02-15 14:10:23 +0000 |
---|---|---|
committer | Matt Kangas <matt.kangas@10gen.com> | 2013-07-08 19:01:09 -0400 |
commit | af45cb2615d13f1a29627ce2937633361413c797 (patch) | |
tree | ad5e534ca6f9f817a1a456b9270beed489c0d934 /rpm/mongod.conf | |
parent | 596f6524cdd61ea544fab9f50069825f336e1176 (diff) | |
download | mongo-af45cb2615d13f1a29627ce2937633361413c797.tar.gz |
SERVER-8588 Default mongod.conf that ships has inconsistent white space
Removed unneccessary whitespace so mongod.conf that ships in the RPM is consistent.
Signed-off-by: Matt Kangas <matt.kangas@10gen.com>
Diffstat (limited to 'rpm/mongod.conf')
-rw-r--r-- | rpm/mongod.conf | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/rpm/mongod.conf b/rpm/mongod.conf index 4bc97f1d5c6..9df77dcc536 100644 --- a/rpm/mongod.conf +++ b/rpm/mongod.conf @@ -6,37 +6,37 @@ logpath=/var/log/mongo/mongod.log logappend=true # fork and run in background -fork = true +fork=true -#port = 27017 +#port=27017 dbpath=/var/lib/mongo # location of pidfile -pidfilepath = /var/run/mongodb/mongod.pid +pidfilepath=/var/run/mongodb/mongod.pid # Listen to local interface only. Comment out to listen on all interfaces. -bind_ip = 127.0.0.1 +bind_ip=127.0.0.1 # Disables write-ahead journaling -# nojournal = true +# nojournal=true # Enables periodic logging of CPU utilization and I/O wait -#cpu = true +#cpu=true # Turn on/off security. Off is currently the default -#noauth = true -#auth = true +#noauth=true +#auth=true # Verbose logging output. -#verbose = true +#verbose=true # Inspect all client data for validity on receipt (useful for # developing drivers) -#objcheck = true +#objcheck=true # Enable db quota management -#quota = true +#quota=true # Set oplogging level where n is # 0=off (default) @@ -44,43 +44,43 @@ bind_ip = 127.0.0.1 # 2=R # 3=both # 7=W+some reads -#diaglog = 0 +#diaglog=0 # Ignore query hints -#nohints = true +#nohints=true # Disable the HTTP interface (Defaults to localhost:27018). -#nohttpinterface = true +#nohttpinterface=true # Turns off server-side scripting. This will result in greatly limited # functionality -#noscripting = true +#noscripting=true # Turns off table scans. Any query that would do a table scan fails. -#notablescan = true +#notablescan=true # Disable data file preallocation. -#noprealloc = true +#noprealloc=true # Specify .ns file size for new databases. -# nssize = <size> +# nssize=<size> # Accout token for Mongo monitoring server. -#mms-token = <token> +#mms-token=<token> # Server name for Mongo monitoring server. -#mms-name = <server-name> +#mms-name=<server-name> # Ping interval for Mongo monitoring server. -#mms-interval = <seconds> +#mms-interval=<seconds> # Replication Options # in replicated mongo databases, specify here whether this is a slave or master -#slave = true -#source = master.example.com +#slave=true +#source=master.example.com # Slave only: specify a single database to replicate -#only = master.example.com +#only=master.example.com # or -#master = true -#source = slave.example.com +#master=true +#source=slave.example.com |