溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

【Mongo】mongo配置文件

發(fā)布時(shí)間:2020-08-09 19:00:50 來源:ITPUB博客 閱讀:144 作者:小亮520cl 欄目:關(guān)系型數(shù)據(jù)庫

大于等于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   ##限制內(nèi)存使用大小


  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:                   ###開啟權(quán)限認(rèn)證

    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. #監(jiān)聽的配置服務(wù)器 , 只能有1個(gè)或者3個(gè) configs為配置服務(wù)器的副本集名字

  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


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI