mongodb - mongo 导入报错
滿天的星座
滿天的星座 2017-05-02 09:20:38
0
1
635

exception: SyntaxError: Unexpected token ILLEGAL

工具是rockmongo

说是有语法错误 但是不知道哪的错误 谷歌搜索是“”有这一对的东西 不过我把里面这一对的都替换了还是报这个错误
文件是从线上的mongo导出的 可能mongo 版本不一样?求解

滿天的星座
滿天的星座

reply all(1)
洪涛

The data processed by mongodb 2.4export is imported into mongodb3.0
You need to convert the original

mongoimport -h localhost -port 27017 -d test -c test business.log

replaced with

mongoimport --host localhost  --port 27017 --db test --collection test  business_new.log

-h -> --host
-p -> --port
-d -> --db
-c -> --collection

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template