Mongodb备份及还原数据库
提示:这里以高级版为例,纯净版目前默认数据库均为oneacg。
备份数据库
首先使用SSH
客户端,比如Xshell
软件,登录服务器,使用命令:
mongodump -h 127.0.0.1 -u ffmpeg -p ffmpeg -d ffmpeg -o /root --authenticationDatabase ffmpeg
-d
是选择要备份的数据库,-u
是用户名,-p
是密码,--authenticationDatabasehou
后面也是要备份的数据库。
备份好了后,数据库备份文件路径为/root/ffmpeg
。
还原数据库
首先使用SSH
客户端,比如Xshell
软件,登录服务器,使用命令:
#/root/ffmpeg为此前数据表备份存放文件夹
mongorestore -h 127.0.0.1 -u ffmpeg -p ffmpeg -d ffmpeg /root/ffmpeg --authenticationDatabase ffmpeg
-d
是选择要合并的数据库,-u
是用户名,-p
是密码,--authenticationDatabasehou
后面也是要还原的数据库。