mongodb 配置&备份
短信预约 信息系统项目管理师 报名、考试、查分时间动态提醒
mongod -f //home/wyd/MongoDB/conf/mongod.conf -v --dbpath /home/wyd/MongoDB/shard-a-primary --logpath /home/wyd/MongoDB/log/shard-a-primary.log --pidfilepath /home/wyd/MongoDB/pid/shard-a-primary.pid --port 27017
=============================================
cat /home/wyd/MongoDB/conf/mongod.conf
systemLog:
destination: file
logAppend: true
storage:
journal:
enabled: true
directoryPerDB: true
engine: wiredTiger
wiredTiger:
engineConfig:
cacheSizeGB: 30
directoryForIndexes: true
indexConfig:
prefixCompression: true
processManagement:
fork: true
net:
port : 27017
bindIp : 0.0.0.0
=========================================
导出数据:${mdbdir}/mongodump -u ${user} -p ${pass} --host ${ip} --port ${hostport} --authenticationDatabase=admin --oplog --out ${bakdir}/$1_${nowtime}
-d dbname
--forceTableScan
mongodump默认使用snapshot,会通过扫描_id 索引,然后去读取实际的文档。TableScan会按照mongodb的物理存储顺序进行扫描,没有读取index的过程。但是tablescan潜在的问题是,如果一个文档在dump的过程中移动了(物理上),有可能会最终输出两次。
#恢复:/data/mongodb/mongos/bin/mongorestore -u ## -p ## --host ## --port ## --authenticationDatabase=admin --drop --oplogReplay --dir=/##/#/full-d dbname
db.createUser( {user: "myUserAdmin", pwd: "abc123", roles: [ { role: "userAdminAnyDatabase", db: "admin" }, "readWriteAnyDatabase" ] })
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341