备份数据
mongodump -d test -c collection -o /path
恢复数据
mongorestore -d test -c collection /path/to/xxx.json
常用参数
- -h:主机
- –port:端口
- -u:账号
- -p:密码
- –authenticationDatabase:鉴权库
- -d:库名
- -c:集合(表名)
- –drop:恢复备份前删除
mongodump -d test -c collection -o /path
mongorestore -d test -c collection /path/to/xxx.json