2013-09-17 22:04:50 +02:00
|
|
|
# mongod.conf
|
2010-02-05 22:45:22 +01:00
|
|
|
|
2010-02-05 23:21:56 +01:00
|
|
|
# Where to store the data.
|
|
|
|
|
|
|
|
# Note: if you run mongodb as a non-root user (recommended) you may
|
|
|
|
# need to create and set permissions for this directory manually,
|
|
|
|
# e.g., if the parent directory isn't mutable by the mongodb user.
|
2010-02-08 18:35:29 +01:00
|
|
|
dbpath=/var/lib/mongodb
|
2010-02-05 23:21:56 +01:00
|
|
|
|
2010-02-05 22:45:22 +01:00
|
|
|
#where to log
|
2013-10-02 17:16:08 +02:00
|
|
|
logpath=/var/log/mongodb/mongod.log
|
2010-02-05 22:45:22 +01:00
|
|
|
|
|
|
|
logappend=true
|
|
|
|
|
|
|
|
#port = 27017
|
|
|
|
|
2013-03-29 19:18:17 +01:00
|
|
|
# Listen to local interface only. Comment out to listen on all interfaces.
|
|
|
|
bind_ip = 127.0.0.1
|
|
|
|
|
2011-08-22 20:27:21 +02:00
|
|
|
# Disables write-ahead journaling
|
|
|
|
# nojournal = true
|
2010-02-05 22:45:22 +01:00
|
|
|
|
|
|
|
# Enables periodic logging of CPU utilization and I/O wait
|
|
|
|
#cpu = true
|
|
|
|
|
|
|
|
# Turn on/off security. Off is currently the default
|
|
|
|
#noauth = true
|
|
|
|
#auth = true
|
|
|
|
|
|
|
|
# Verbose logging output.
|
|
|
|
#verbose = true
|
|
|
|
|
|
|
|
# Inspect all client data for validity on receipt (useful for
|
|
|
|
# developing drivers)
|
|
|
|
#objcheck = true
|
|
|
|
|
|
|
|
# Enable db quota management
|
|
|
|
#quota = true
|
|
|
|
|
|
|
|
# Set oplogging level where n is
|
|
|
|
# 0=off (default)
|
|
|
|
# 1=W
|
|
|
|
# 2=R
|
|
|
|
# 3=both
|
|
|
|
# 7=W+some reads
|
2010-12-06 18:10:57 +01:00
|
|
|
#diaglog = 0
|
2010-02-05 22:45:22 +01:00
|
|
|
|
|
|
|
# Ignore query hints
|
|
|
|
#nohints = true
|
|
|
|
|
2012-05-15 23:40:01 +02:00
|
|
|
# Disable the HTTP interface (Defaults to localhost:28017).
|
2010-02-05 22:45:22 +01:00
|
|
|
#nohttpinterface = true
|
|
|
|
|
|
|
|
# Turns off server-side scripting. This will result in greatly limited
|
|
|
|
# functionality
|
|
|
|
#noscripting = true
|
|
|
|
|
|
|
|
# Turns off table scans. Any query that would do a table scan fails.
|
|
|
|
#notablescan = true
|
|
|
|
|
|
|
|
# Disable data file preallocation.
|
|
|
|
#noprealloc = true
|
|
|
|
|
|
|
|
# Specify .ns file size for new databases.
|
|
|
|
# nssize = <size>
|
|
|
|
|
|
|
|
# Replication Options
|
|
|
|
|
2010-12-06 18:13:28 +01:00
|
|
|
# in master/slave replicated mongo databases, specify here whether
|
|
|
|
# this is a slave or master
|
2010-02-05 22:45:22 +01:00
|
|
|
#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
|
2010-12-06 18:13:28 +01:00
|
|
|
|
|
|
|
# in replica set configuration, specify the name of the replica set
|
2011-08-22 20:27:21 +02:00
|
|
|
# replSet = setname
|