MongoDB导入导出

------导出
mongoexport --host 1111 --port 27017 --username root --password 1111 --authenticationDatabase "admin" --db GoKS_schema_db --collection dataType --out /data/data/dataType.json --forceTableScan -d GoKS_schema_db

mongoexport --host 11111 --port 27017 --username root --password 111 --authenticationDatabase "admin" --db GoKS_schema_db --collection object --out /data/data/object.json --forceTableScan -d GoKS_schema_db

mongoexport --host 1111--port 27017 --username root --password 111 --authenticationDatabase "admin" --db GoKS_schema_db --collection property --out /data/data/property.json --forceTableScan -d GoKS_schema_db

mongoexport --host 11111--port 27017 --username root --password 111 --authenticationDatabase "admin" --db GoKS_schema_db --collection propertyGroup --out /data/data/propertyGroup.json --forceTableScan -d GoKS_schema_db

mongoexport --host 1111 --port 27017 --username root --password 111 --authenticationDatabase "admin" --db GoKS_schema_db --collection relation --out /data/data/relation.json --forceTableScan -d GoKS_schema_db

导入----

mongoimport --host 111 --port 28019 --username admin --password golaxy --authenticationDatabase "admin" --collection property --db GoKS_schema_db --file /data/data/property.json

mongoimport --host 111 --port 28019 --username admin --password golaxy --authenticationDatabase "admin" --collection propertyGroup --db GoKS_schema_db --file /data/data/propertyGroup.json

mongoimport --host 111 --port 28019 --username admin --password golaxy --authenticationDatabase "admin" --collection relation --db GoKS_schema_db --file /data/data/relation.json

你可能感兴趣的:(MongoDB导入导出)