Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. # for documentation of all options, see:
  2. # http://docs.mongodb.org/manual/reference/configuration-options/
  3.  
  4. # Where and how to store data.
  5. storage:
  6. dbPath: /var/mongodb/db
  7. journal:
  8. enabled: true
  9. # engine:
  10. # mmapv1:
  11. # wiredTiger:
  12.  
  13. # where to write logging data.
  14. systemLog:
  15. destination: file
  16. logAppend: true
  17. path: /var/mongodb/db/mongod.log
  18.  
  19. # network interfaces
  20. net:
  21. port: 27000
  22. bindIp: "127.0.0.1,192.168.103.100"
  23.  
  24.  
  25. # how the process runs
  26. processManagement:
  27. timeZoneInfo: /usr/share/zoneinfo
  28. fork: true
  29.  
  30. security:
  31. authorization: enabled
  32.  
  33. operationProfiling:
  34. mode: slowOp
  35. slowOpThresholdMs: 50
  36.  
  37. #replication:
  38.  
  39. #sharding:
  40.  
  41. ## Enterprise-Only Options:
  42.  
  43. #auditLog:
  44.  
  45. #snmp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement