【Mongo】mongo配置檔案

小亮520cl發表於2018-07-17

大於等於3.2按這種寫法

  1. [ root@ ip - 172 - 31 - 33 - 43 conf ] # more shard1 . conf

  2. # where to write logging data .

  3. systemLog :

  4.   destination : file

  5.   logAppend : true

  6.   path : /data/shard1/log/shard1 . log

  7.  

  8. # Where and how to store data .

  9. storage :

  10.   dbPath : /data/shard1/data

  11.   journal :

  12.     enabled : true

  13.   wiredTiger :

  14.     engineConfig :

  15.         cacheSizeGB : 5   ##限制記憶體使用大小


  16. # how the process runs

  17. processManagement :

  18.   fork : true

  19.   pidFilePath : /data/shard1/log/shard1 . pid

  20.  

  21. # network interfaces

  22. net :

  23.   port : 27001

  24.   bindIp : 172 . 31 . 33 . 43


  25. #security :

  26. #  authorization : enabled


  27. #operationProfiling :

  28. replication :

  29.     replSetName : shard1

  30. sharding :

  31.     clusterRole : shardsvr

security:                   ###開啟許可權認證

    keyFile: /usr/local/mongodb/keyfile

    authorization: enabled


  1. [ root@ ip - 172 - 31 - 33 - 43 conf ] # more config . conf

  2. ## content

  3. systemLog :

  4.   destination : file

  5.   logAppend : true

  6.   path : /data/config/log/config . log

  7.  

  8. # Where and how to store data .

  9. storage :

  10.   dbPath : /data/config/data

  11.   journal :

  12.     enabled : true

  13. # how the process runs

  14. processManagement :

  15.   fork : true

  16.   pidFilePath : /data/config/log/configsrv . pid

  17.  

  18. # network interfaces

  19. net :

  20.   port : 21000

  21.   bindIp : 172 . 31 . 33 . 43

  22.  

  23. #operationProfiling :

  24. replication :

  25.     replSetName : config


  26. sharding :

  27.     clusterRole : configsvr


  28. [ root@ ip - 172 - 31 - 33 - 43 conf ] # more mongos . conf

  29. systemLog :

  30.   destination : file

  31.   logAppend : true

  32.   path : /data/mongos/log/mongos . log

  33. processManagement :

  34.   fork : true

  35.  

  36. # network interfaces

  37.   

  38. net :

  39.   port : 20000

  40.   bindIp : 172 . 31 . 33 . 43

  41. #監聽的配置伺服器 , 只能有1個或者3個 configs為配置伺服器的副本集名字

  42. sharding :

  43.    configDB : config/172 . 31 . 33 . 43 : 21000 , 172 . 31 . 45 . 127 : 21000 , 172 . 31 . 36 . 162 : 21000



小於3.2一般按這種格式
  1. port = 27017

  2. dbpath = / data/mongodb/data

  3. logpath = / data/mongodb/logs/mongodb . log

  4. pidfilepath = / data/mongodb/logs/mongodb . pid

  5. logappend = true

  6. auth = true

  7. fork = true

  8. wiredTigerCacheSizeGB = 20


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29096438/viewspace-2154557/,如需轉載,請註明出處,否則將追究法律責任。

相關文章