標籤:mongodb 分區 設定檔 directoryperdb
# mongod.conf
# 追加模式寫入log
logpath=/var/log/mongodb/mongod.log
logappend=true
# 後台運行
fork=true
# 服務連接埠號碼
port=27013
# 資料庫檔案存放目錄
dbpath=/var/lib/mongo
directoryperdb=true
# 進程id檔案的存放路徑
pidfilepath=/var/run/mongodb/mongod.pid
# 監聽IP地址
bind_ip=0.0.0.0
# Disables write-ahead journaling
# nojournal=true
# 啟用定時記錄CPU的利用率和I/O等待
#cpu=true
# Turn on/off security. Off is currently the default
#noauth=true
#auth=true
# 詳細記錄輸出
#verbose=true
# 用於開發驅動程式時的檢查用戶端接收資料的有效性
#objcheck=true
# 啟用資料庫配額管理,預設每個db可以有8個檔案,可以用quotaFiles參數設定
#quota=true
# 設定oplog記錄等級
# 0=off (default)
# 1=W
# 2=R
# 3=both
# 7=W+some reads
#diaglog=0
# 忽略查詢提示
#nohints=true
# Enable the HTTP interface (Defaults to port 28017).
#httpinterface=true
# 關閉伺服器端指令碼,這將極大的限制功能
#noscripting=true
# 關閉掃描表,任何查詢將會是掃描失敗
#notablescan=true
# 關閉資料檔案預分配
#noprealloc=true
# 為新資料庫指定.ns檔案的大小,單位:MB
# nssize=<size>
# Replication Options
# in replicated mongo databases, specify the replica set name here
#replSet=setname
# maximum size in megabytes for replication operation log
#oplogSize=1024
# path to a key file storing authentication info for connections
# between replica set members
#keyFile=/path/to/keyfile
mongodb 設定檔