diff options
author | Richard Kreuter <richard@10gen.com> | 2011-03-17 12:08:08 -0400 |
---|---|---|
committer | Richard Kreuter <richard@10gen.com> | 2011-03-17 12:08:08 -0400 |
commit | ea930f7170542ddd4ba5433c1fa7a5672838d6f0 (patch) | |
tree | 11cd99417eb49369637e565b4fb835496f82843f | |
parent | 2e7514262a51baae23c5c57dabc8a24f7f934510 (diff) | |
download | mongo-ea930f7170542ddd4ba5433c1fa7a5672838d6f0.tar.gz |
Remove a hidden option, and SERVER-2774.
-rw-r--r-- | debian/mongodb.conf | 6 | ||||
-rw-r--r-- | rpm/mongod.conf | 6 |
2 files changed, 5 insertions, 7 deletions
diff --git a/debian/mongodb.conf b/debian/mongodb.conf index 2b8ca9e5b84..1c318c6a18a 100644 --- a/debian/mongodb.conf +++ b/debian/mongodb.conf @@ -14,7 +14,8 @@ logappend=true #port = 27017 - +# Enables write-ahead journaling +# journal = true # Enables periodic logging of CPU utilization and I/O wait #cpu = true @@ -41,9 +42,6 @@ logappend=true # 7=W+some reads #diaglog = 0 -# Diagnostic/debugging option -#nocursors = true - # Ignore query hints #nohints = true diff --git a/rpm/mongod.conf b/rpm/mongod.conf index 1530199b6ea..1333286602c 100644 --- a/rpm/mongod.conf +++ b/rpm/mongod.conf @@ -12,6 +12,9 @@ fork = true dbpath=/var/lib/mongo +# Enables write-ahead journaling +# journal = true + # Enables periodic logging of CPU utilization and I/O wait #cpu = true @@ -37,9 +40,6 @@ dbpath=/var/lib/mongo # 7=W+some reads #oplog = 0 -# Diagnostic/debugging option -#nocursors = true - # Ignore query hints #nohints = true |