mongo导入导出信息

导入(mongoimport)与导出(mongoexport)

mongoimport -d assess -c r0audio  --file /opt/r0.json -h 10.12.6.76 --port 18637 -u root -p 12CE9DE3-0B75-48B8-9EFA-8AF2E9501C2B --authenticationDatabase=admin
mongoexport -d ccdmnlu -c env_field_map  -o env_field_map.json -h 127.0.0.1 --port 27017 -u root -p aispeech2019 --authenticationDatabase=admin
# -d 库名 
# -c collection名
# -o 导出文件名
# -h host
# --port port
# -u 账户名
# -p 密码
# --file 导入文件名
# authenticationDatabase=admin  授权信息

备份(mongodump)与恢复(mongorestore)

mongodump -d assess -o assess.bson -h 127.0.0.1 --port 27017 -u root -p aispeech2019 --authenticationDatabase=admin
mongorestore -d assess -h 127.0.0.1 --dir assess --port 27017 -u aispeech -p aispeech2019 --authenticationDatabase=assess
# -d 库名 
# -h host
# --dir 导入库文件
# --port port
# -u 账户名
# -p 密码
# authenticationDatabase=admin  授权信息

你可能感兴趣的:(mongo导入导出信息)