exception: SyntaxError: Unexpected token ILLEGAL
工具是rockmongo
說是有語法錯誤但是不知道哪的錯誤谷歌搜尋是「」有這一對的東西不過我把裡面這一對的都替換了還是報這個錯誤文件是從線上的mongo導出的可能mongo版本不一樣?求解
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
mongodb 2.4export處理出來的數據,導入到mongodb3.0
需要將原來
替換為
-h -> --host
-p -> --port
-d -> --db
-c -> --collection