1

我正面临这个错误SyntaxError: syntax error (shell):0。我正在使用 ubuntu。我试过这样。首先打开终端并输入 mongo

MongoDB shell version: 2.0.4
connecting to: test
>

之后我切换到我要创建的数据库test1然后使用以下命令

./mongorestore -h localhost:27017 -d test1 /home/ratheesh/testdev

我收到了这个错误

Wed May 16 12:33:03 SyntaxError: syntax error (shell):0
>

请帮我解决这个问题

4

1 回答 1

3

mongodumpmongorestore是可执行程序,不应该从 mongo shell 运行。从命令行运行 restore 命令,运行后启动 mongo 并验证数据是否出现在数据库中。

于 2012-05-16T07:52:20.903 回答