Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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: