Node.js学习——mongo数据库备份数据库和导入数据库

2022-01-21  本文已影响0人  wxyzcctn

1. mongodb数据库导出备份语法:

mongodump -h dbhost -d dbname -o dbdirectory

参数说明:

mongodb数据库恢复导入语法:

mongorestore -h dbhost -d dbname dbdirectory

参数或名:

mongodb数据库有用户名密码认证的参考下面命令

mongodump -h localhost:27017 -d test -u test -p testpwd -o D:\dump  --authenticationDatabase admin
mongorestore -h localhost:27017 -d test -c order --dir d:\dump\test\test.bson -u test -p testpwd --authenticationDatabase admin

注意:在数据库中包含权限是需要完成备份和导入是需要在指令后面加上--authenticationDatabase admin

上一篇下一篇

猜你喜欢

热点阅读