您好,登錄后才能下訂單哦!
MongoDB中怎么遷移部分?jǐn)?shù)據(jù),很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
場景:將mongodb部分?jǐn)?shù)據(jù)從一臺云服務(wù)器遷移到另一臺云服務(wù)器
命令:mongoexport、mongoimport
$ mongoexport -d db -c collection -o outfile --type json/csv -f fields -h, --host 遠(yuǎn)程連接的數(shù)據(jù)庫地址,默認(rèn)連接本地Mongo數(shù)據(jù)庫。 --port 遠(yuǎn)程連接的數(shù)據(jù)庫的端口,默認(rèn)為27017. -u, --username 連接遠(yuǎn)程數(shù)據(jù)庫的賬戶,若數(shù)據(jù)庫設(shè)置了認(rèn)證,需指定賬戶。 -p, --password 連接遠(yuǎn)程數(shù)據(jù)庫賬戶對應(yīng)的密碼 --authenticationDatabase 認(rèn)證的數(shù)據(jù)庫 -d, --db 數(shù)據(jù)庫名稱 -c, --collection 集合名稱 -o, --out 導(dǎo)出的文件名 --type 導(dǎo)出的文件格式,默認(rèn)為JSON,可選CSV、JSON。 -f, --fields 導(dǎo)出的字段,多字段以逗號分隔,當(dāng)輸出格式為CSV是必須指定輸出的字段,CSV大部分關(guān)系型數(shù)據(jù)庫都支持。 -q, --query 查詢條件 --skip 跳過指定數(shù)量的數(shù)據(jù) --limit 讀取指定數(shù)量的數(shù)據(jù)記錄 --sort 對數(shù)據(jù)進(jìn)行排序,可指定排序的字段,使用1為升序-1為降序,如 sort({key:1}) # 導(dǎo)出集合 $ mongoexport --host 127.0.0.1 --port 27017 --username sa --password sa --authenticationDatabase game --db test --collection test --type json --out ./test.json # 簡化方式 $ mongoexport -d test -c tf_game -o ./test.json # 導(dǎo)入集合 $ mongoimport --host 127.0.0.1 --port 27017 --username sa --password sa --authenticationDatabase game --db test --collection test --file ./test.json
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。