Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now make the following changes to mongod.conf

Uncomment wiredTiger

  • Change the dbPath to /data/mongodb
  • Provision wiredTiger
    • Uncomment
    • Add engineConfig, cacheSizeGB: 8
Code Block
title/etc/mongod.conf
--snip

# Where and how to store data.
storage:
  dbPath: /data/mongodb
  journal:
    enabled: true
#  engine:
#  mmapv1:
wiredTiger:
  engineConfig:
    cacheSizeGB: 8

--snip