窝窝插件 发表于 2017-12-15 16:37:01

Mongodb错误处理

$mongoimport --db test --collection restaurants --drop --file ~/downloads/primer-dataset.json  
2017-01-26T17:27:11.882+0800[........................] test.restaurants0.0 B/11.3 MB (0.0%)
  
2017-01-26T17:27:12.409+0800Failed: error connecting to db server: no reachable servers
  
2017-01-26T17:27:12.409+0800imported 0 documents
  

  
$ mongorestore dump --host=127.0.0.1
  
2017-01-26T17:27:42.124+0800building a list of dbs and collections to restore from dump dir
  
2017-01-26T17:27:42.125+0800Failed: error scanning filesystem: error reading root dump folder: open dump: no such file or directory
  

  
$ mongoimport --host=127.0.0.1 --db test --collection restaurants --drop --file ~/downloads/primer-dataset.json
  
2017-01-26T17:32:44.206+0800connected to: 127.0.0.1
  
2017-01-26T17:32:44.207+0800dropping: test.restaurants
  
2017-01-26T17:32:45.572+0800imported 25359 documents
  
页: [1]
查看完整版本: Mongodb错误处理