mongodb.conf 416 B

1234567891011121314151617181920212223
  1. # mongod.conf
  2. # for documentation of all options, see:
  3. # http://docs.mongodb.org/manual/reference/configuration-options/
  4. # Where and how to store data.
  5. storage:
  6. dbPath: "/ssd/mongodb"
  7. journal:
  8. enabled: true
  9. # engine:
  10. # mmapv1:
  11. # wiredTiger:
  12. # where to write logging data.
  13. systemLog:
  14. destination: file
  15. logAppend: true
  16. path: "/ssd/log/mongodb/mongod.log"
  17. # network interfaces
  18. net:
  19. port: 27017