Mongodb 啟動參數

來源:互聯網
上載者:User

標籤:http   io   ar   os   使用   sp   for   檔案   on   

使用下面命令可以查看服務的啟動參數:@
  1. mongod --help 或者mongod -h
其他命令參數詳解:@
  1. * 基本配置
  2. -----------------------------------------------------------------------------
  3. --quiet # 安靜輸出
  4. --port arg # 指定服務連接埠號碼,預設連接埠27017
  5. --bind_ip arg # 綁定服務IP,若綁定127.0.0.1,則只能本機訪問,不指定預設本地所有IP
  6. --logpath arg # 指定MongoDB記錄檔,注意是指定檔案不是目錄
  7. --logappend # 使用追加的方式寫日誌
  8. --pidfilepath arg # PID File 的完整路徑,如果沒有設定,則沒有PID檔案
  9. --keyFile arg # 叢集的私密金鑰的完整路徑,只對於Replica Set 架構有效
  10. --unixSocketPrefix arg # UNIX域通訊端替代目錄,(預設為 /tmp)
  11. --fork # 以守護進程的方式運行MongoDB,建立伺服器處理序
  12. --auth # 啟用驗證
  13. --cpu # 定期顯示CPU的CPU利用率和iowait
  14. --dbpath arg # 指定資料庫路徑
  15. --diaglog arg # diaglog選項 0=off 1=W 2=R 3=both 7=W+some reads
  16. --directoryperdb # 設定每個資料庫將被儲存在一個單獨的目錄
  17. --journal # 啟用日誌選項,MongoDB的資料操作將會寫入到journal檔案夾的檔案裡
  18. --journalOptions arg # 啟用日誌診斷選項
  19. --ipv6 # 啟用IPv6選項
  20. --jsonp # 允許JSONP形式通過HTTP訪問(有安全影響)
  21. --maxConns arg # 最大同時串連數 預設2000
  22. --noauth # 不啟用驗證
  23. --nohttpinterface # 關閉http介面,預設關閉27018連接埠訪問
  24. --noprealloc # 禁用資料檔案預分配(往往影響效能)
  25. --noscripting # 禁用指令碼引擎
  26. --notablescan # 不允許表掃描
  27. --nounixsocket # 禁用Unix通訊端監聽
  28. --nssize arg (=16) # 設定信資料庫.ns檔案大小(MB)
  29. --objcheck # 在收到客戶資料,檢查的有效性,
  30. --profile arg # 檔案參數 0=off 1=slow, 2=all
  31. --quota # 限制每個資料庫的檔案數,設定預設為8
  32. --quotaFiles arg # number of files allower per db, requires --quota
  33. --rest # 開啟簡單的rest API
  34. --repair # 修複所有資料庫run repair on all dbs
  35. --repairpath arg # 修複庫產生的檔案的目錄,預設為目錄名稱dbpath
  36. --slowms arg (=100) # value of slow for profile and console log
  37. --smallfiles # 使用較小的預設檔案
  38. --syncdelay arg (=60) # 資料寫入磁碟的時間秒數(0=never,不推薦)
  39. --sysinfo # 列印一些診斷系統資訊
  40. --upgrade # 如果需要升級資料庫
  41. * Replicaton 參數
  42. -----------------------------------------------------------------------------
  43. --fastsync # 從一個dbpath裡啟用從庫複製服務,該dbpath的資料庫是主庫的快照,可用於快速啟用同步
  44. --autoresync # 如果從庫與主庫同步資料差得多,自動重新同步,
  45. --oplogSize arg # 設定oplog的大小(MB)
  46. * 主/從參數
  47. -----------------------------------------------------------------------------
  48. --master # 主庫模式
  49. --slave # 從庫模式
  50. --source arg # 從庫連接埠號碼
  51. --only arg # 指定單一的資料庫複寫
  52. --slavedelay arg # 設定從庫同步主庫的延遲時間
  53. * Replica set(複本集)選項:
  54. -----------------------------------------------------------------------------
  55. --replSet arg # 設定複本集名稱
  56. * Sharding(分區)選項
  57. -----------------------------------------------------------------------------
  58. --configsvr # 聲明這是一個叢集的config服務,預設連接埠27019,預設目錄/data/configdb
  59. --shardsvr # 聲明這是一個叢集的分區,預設連接埠27018
  60. --noMoveParanoia # 關閉偏執為moveChunk資料儲存?
上述參數都可以寫入mongod.conf 配置文檔裡例如:@
  1. dbpath = /data/mongodb
  2. logpath = /data/mongodb/mongodb.log
  3. logappend = true
  4. port = 27017
  5. fork = true
  6. auth = true

Mongodb 啟動參數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.