summarylogtreecommitdiffstats
path: root/mongodb.conf
diff options
context:
space:
mode:
Diffstat (limited to 'mongodb.conf')
-rw-r--r--mongodb.conf51
1 files changed, 43 insertions, 8 deletions
diff --git a/mongodb.conf b/mongodb.conf
index c5272b7f2df3..4a82d14d95ab 100644
--- a/mongodb.conf
+++ b/mongodb.conf
@@ -1,8 +1,43 @@
-# See http://www.mongodb.org/display/DOCS/File+Based+Configuration for format details
-# Run mongod --help to see a list of options
-
-bind_ip = 127.0.0.1
-quiet = true
-dbpath = /var/lib/mongodb
-logpath = /var/log/mongodb/mongod.log
-logappend = true
+# mongod.conf
+
+# for documentation of all options, see:
+# http://docs.mongodb.org/manual/reference/configuration-options/
+
+# Where and how to store data.
+storage:
+ dbPath: /var/lib/mongodb
+ journal:
+ enabled: true
+# engine:
+# mmapv1:
+# wiredTiger:
+
+# where to write logging data.
+systemLog:
+ destination: file
+ logAppend: true
+ path: /var/log/mongodb/mongod.log
+
+# network interfaces
+net:
+ port: 27017
+ bindIp: 127.0.0.1
+
+
+# how the process runs
+processManagement:
+ timeZoneInfo: /usr/share/zoneinfo
+
+#security:
+
+#operationProfiling:
+
+#replication:
+
+#sharding:
+
+## Enterprise-Only Options:
+
+#auditLog:
+
+#snmp: