search

Home  >  Q&A  >  body text

mongodb - mongo 导入报错

exception: SyntaxError: Unexpected token ILLEGAL

工具是rockmongo

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

滿天的星座滿天的星座2757 days ago620

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-05-02 09:22:38

    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

    reply
    0
  • Cancelreply