mongorestore停止收集

时间:2015-11-30 14:18:20

标签: mongodb mongorestore

我通过运行以下命令从转储中恢复mongodb数据库

mongorestore --db=my_db --dir /home/ubuntu/restore/$DUMP/my_db/ --drop --stopOnError --verbose

它运行并显示以下行

found collection .....
dropping collection .....

它停在此处。无法弄清楚问题。

1 个答案:

答案 0 :(得分:0)

这是使用mongorestore的正确方法。

mongorestore --host hostname --port <port number> --db <database_name> -u <username> -p<password> <path_of_backuped_file>