No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_mongod.conf 655B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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: /var/lib/mongodb
  7. journal:
  8. enabled: true
  9. engine: wiredTiger
  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. net:
  19. port: 27017
  20. bindIp: 127.0.0.1
  21. # how the process runs
  22. processManagement:
  23. timeZoneInfo: /usr/share/zoneinfo
  24. #security:
  25. #operationProfiling:
  26. replication:
  27. replSetName: rs01
  28. #sharding:
  29. ## Enterprise-Only Options:
  30. #auditLog:
  31. #snmp: