您好,登錄后才能下訂單哦!
配置文件1
# mongod.conf
systemLog:
destination: file
logAppend: true
storage:
journal:
enabled: true
directoryPerDB: true
engine: wiredTiger
wiredTiger:
engineConfig:
cacheSizeGB: 2
directoryForIndexes: true
indexConfig:
prefixCompression: true
processManagement:
fork: true
net:
port: 27017
目錄介紹
/data/wyd/mongodb下的目錄內(nèi)容如下
backup(備份) log(日志) pid(pid文件) script shard-a-primary(數(shù)據(jù)庫目錄)
cacheSize是指系統(tǒng)分配給mongod用的內(nèi)存,比如你系統(tǒng)有三十G內(nèi)存,你可以分配二十四G內(nèi)存給Mongodb
配置文件詳細說明參考
https://blog.csdn.net/jianlong727/article/details/53484440
Mongodb內(nèi)存緩存大小配置
http://www.jyguagua.com/?p=3248
啟動
numactl --interleave=all mongod -f /etc/mongod.conf \
--dbpath /data/wyd03/mongodbard-a-primary \
--logpath /data/wyd03/mongodb/logard-a-primary.log \
--pidfilepath /data/wyd03/mongodb/pidard-a-primary.pid --port 27021
指定不一樣的pid和端口這樣就可以起啟多個不一樣的進程
線上配置文件二
dbpath=/data/mongodb/db
logpath=/data/mongodb/logs/mongodb.log
bind_ip=127.0.0.1
port=27017
fork=true
nohttpinterface=true
auth=true
啟動
/usr/local/mongodb/bin/mongod -f /usr/local/mongodb/conf/mongodb.conf
線上配置文件三
systemLog:
quiet: false
logAppend: true
destination: file
path: /data/mongodb/logs/mongod.log
storage:
dbPath: /data/mongodb/db
journal:
enabled: true
engine: wiredTiger
wiredTiger:
engineConfig:
cacheSizeGB: 16
indexConfig:
prefixCompression: true
processManagement:
fork: true
net:
bindIp: 127.0.0.1
port: 27017
security:
authorization: enabled
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。