MongoDB版本 :db.version()
MongoDB内存 : db.stats(1073741824) GB;
导出 :
cd D:\mongo\bin
mongoexport -d test -c 基础资产 -o D:/rbac.json --type=json
导入:
mongoimport --port 27017 -d test -c 基础资产 --type=json --file D:/rbac.json
备份整个库
mongodump -h 127.0.0.1:27017 -d test -o D:\123.json
恢复整个库
mongorestore -h 127.0.0.1:27017 -d test D:\123.json\dbname
-------------参数说明
-d 数据库
-c 表名
-port 端口号
-h ip
-o 文件路径