suchen

Heim  >  Fragen und Antworten  >  Hauptteil

mongodb - mongo 导入报错

exception: SyntaxError: Unexpected token ILLEGAL

工具是rockmongo

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

滿天的星座滿天的星座2757 Tage vor618

Antworte allen(1)Ich werde antworten

  • PHP中文网

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

    mongodb 2.4export处理出来的数据,导入到mongodb3.0
    需要将原来

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

    替换为

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

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

    Antwort
    0
  • StornierenAntwort