Advertisement
taweesoft

mongodb.conf

Jan 5th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  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: /mnt/mongodb/db
  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: /var/log/mongodb/mongod.log
  17. # network interfaces
  18. #
  19. # MongoDB 3.0.x *debian* packages set bind_ip to 127.0.0.1 by default
  20. # Compute Engine public addresses are properly firewalled by default
  21. # set bind_ip to 0.0.0.0 to emulate pre-2.6 behavior which eases maintenance
  22. net:
  23. port: 27017
  24. bindIp: 0.0.0.0
  25. #processManagement:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement