Versions Compared

Key

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

...

  • Change the dbPath to /data/mongodb
  • Provision wiredTiger
    • Uncomment
    • Add engineConfig, cacheSizeGB: 8
    (uncomment)
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 

Delete temporary files associated with MongoDB

...