一、collection 导入 json
# 进入服务器terminal
$ mongoimport --db xxx --collection xxx --jsonArray ~/xxx.json
# 若无法使用,即没有添加到 profile里,需到mongo目录下使用
# 查看 mongodb.conf,一般在 /etc 目录,其中有 mongodb 的 dbpath
# 进入 dbpath
$ cd xxxx
$ mongoimport --db xxx --collection xxx --jsonArray ~/xxx.json
二、 MongoDB console 简单使用
use emr 进入数据库
show collections 显示数据库下所有集合
db.xxx.drop() 删除某一集合 xxx
show collections
db.createCollection("xxx") 新建集合 xxx