一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|數(shù)據(jù)庫技術(shù)|

服務(wù)器之家 - 數(shù)據(jù)庫 - MongoDB - MongoDB整庫備份與還原以及單個collection備份、恢復(fù)方法

MongoDB整庫備份與還原以及單個collection備份、恢復(fù)方法

2020-04-21 15:00MongoDB教程網(wǎng) MongoDB

mongodb數(shù)據(jù)庫維護(hù)離不開必要的備份、恢復(fù)操作,而且一般不會出錯,所以我們在使用的時候大部分時候使用備份和恢復(fù)操作就可以了

mongodump.exe備份的原理是通過一次查詢獲取當(dāng)前服務(wù)器快照,并將快照寫入磁盤中,因此這種方式保存的也不是實(shí)時的,因?yàn)樵讷@取快照后,服務(wù)器還會有數(shù)據(jù)寫入,為了保證備份的安全,同樣我們還是可以利用fsync鎖使服務(wù)器數(shù)據(jù)暫時寫入緩存中。

備份前的檢查
> show dbs
MyDB 0.0625GB
admin (empty)
bruce 0.0625GB
local (empty)
test 0.0625GB
> use MyDB
switched to db MyDB
> db.users.find()
{ "_id" : ObjectId("4e290aa39a1945747b28f1ee"), "a" : 1, "b" : 1 }
{ "_id" : ObjectId("4e2cd2182a65c81f21566318"), "a" : 3, "b" : 5 }
>

整庫備份:
mongodump -h dbhost -d dbname -o dbdirectory
-h:MongDB所在服務(wù)器地址,例如:127.0.0.1,當(dāng)然也可以指定端口號:127.0.0.1:27017
-d:需要備份的數(shù)據(jù)庫實(shí)例,例如:test
-o:備份的數(shù)據(jù)存放位置,例如:c:\data\dump,當(dāng)然該目錄需要提前建立,在備份完成后,系統(tǒng)自動在dump目錄下建立一個test目錄,這個目錄里面存放該數(shù)據(jù)庫實(shí)例的備份數(shù)據(jù)。

mongodump的官方說明(可通過mongodump --help查看):
options:
--help          produce help message
-v [ --verbose ]     be more verbose (include multiple times for more
              verbosity e.g. -vvvvv)
--version        print the program's version and exit
-h [ --host ] arg    mongo host to connect to ( /s1,s2 for
              sets)
--port arg        server port. Can also use --host hostname:port
--ipv6          enable IPv6 support (disabled by default)
-u [ --username ] arg  username
-p [ --password ] arg  password
--dbpath arg       directly access mongod database files in the given
              path, instead of connecting to a mongod server -
              needs to lock the data directory, so cannot be used
              if a mongod is currently accessing the same path
--directoryperdb     if dbpath specified, each db is in a separate
              directory
--journal        enable journaling
-d [ --db ] arg     database to use
-c [ --collection ] arg collection to use (some commands)
-o [ --out ] arg (=dump) output directory or "-" for stdout
-q [ --query ] arg    json query
--oplog         Use oplog for point-in-time snapshotting
--repair         try to recover a crashed database
--forceTableScan     force a table scan (do not use $snapshot)

整庫恢復(fù):
mongorestore -h dbhost -d dbname –directoryperdb dbdirectory
-h:MongoDB所在服務(wù)器地址
-d:需要恢復(fù)的數(shù)據(jù)庫實(shí)例,例如:test,當(dāng)然這個名稱也可以和備份時候的不一樣,比如test2
–directoryperdb:備份數(shù)據(jù)所在位置,例如:c:\data\dump\test,這里為什么要多加一個test,而不是備份時候的dump,讀者自己查看提示吧!
–drop:恢復(fù)的時候,先刪除當(dāng)前數(shù)據(jù),然后恢復(fù)備份的數(shù)據(jù)。就是說,恢復(fù)后,備份后添加修改的數(shù)據(jù)都會被刪除,慎用哦!

mongorestore的官方說明(可通過mongorestore --help查看):
options:
--help         produce help message
-v [ --verbose ]    be more verbose (include multiple times for more
             verbosity e.g. -vvvvv)
--version        print the program's version and exit
-h [ --host ] arg    mongo host to connect to ( /s1,s2 for sets)
--port arg       server port. Can also use --host hostname:port
--ipv6         enable IPv6 support (disabled by default)
-u [ --username ] arg  username
-p [ --password ] arg  password
--dbpath arg      directly access mongod database files in the given
             path, instead of connecting to a mongod server -
             needs to lock the data directory, so cannot be used
             if a mongod is currently accessing the same path
--directoryperdb    if dbpath specified, each db is in a separate
             directory
--journal        enable journaling
-d [ --db ] arg     database to use
-c [ --collection ] arg collection to use (some commands)
--objcheck       validate object before inserting
--filter arg      filter to apply before inserting
--drop         drop each collection before import
--oplogReplay      replay oplog for point-in-time restore
--oplogLimit arg    exclude oplog entries newer than provided timestamp
             (epoch[:ordinal])
--keepIndexVersion   don't upgrade indexes to newest version
--noOptionsRestore   don't restore collection options
--noIndexRestore    don't restore indexes
--w arg (=1)      minimum number of replicas per write

單個collection備份:
mongoexport -h dbhost -d dbname -c collectionname -f collectionKey -o dbdirectory
-h: MongoDB所在服務(wù)器地址
-d: 需要恢復(fù)的數(shù)據(jù)庫實(shí)例
-c: 需要恢復(fù)的集合
-f: 需要導(dǎo)出的字段(省略為所有字段)
-o: 表示導(dǎo)出的文件名

mongoexport的官方說明(可通過mongoexport --help查看):
--help          produce help message
-v [ --verbose ]     be more verbose (include multiple times for more
              verbosity e.g. -vvvvv)
--version         print the program's version and exit
-h [ --host ] arg     mongo host to connect to ( /s1,s2 for
              sets)
--port arg        server port. Can also use --host hostname:port
--ipv6          enable IPv6 support (disabled by default)
-u [ --username ] arg   username
-p [ --password ] arg   password
--dbpath arg       directly access mongod database files in the given
              path, instead of connecting to a mongod server -
              needs to lock the data directory, so cannot be used
              if a mongod is currently accessing the same path
--directoryperdb     if dbpath specified, each db is in a separate
              directory
--journal         enable journaling
-d [ --db ] arg      database to use
-c [ --collection ] arg  collection to use (some commands)
-f [ --fields ] arg    comma separated list of field names e.g. -f
              name,age
--fieldFile arg      file with fields names - 1 per line
-q [ --query ] arg    query filter, as a JSON string
--csv           export to csv instead of json
-o [ --out ] arg     output file; if not specified, stdout is used
--jsonArray        output to a json array rather than one object per
              line
-k [ --slaveOk ] arg (=1) use secondaries for export if available, default
              true
--forceTableScan     force a table scan (do not use $snapshot)

單個collection恢復(fù):
mongoimport -d dbhost -c collectionname –type csv –headerline –file
-type: 指明要導(dǎo)入的文件格式
-headerline: 批明不導(dǎo)入第一行,因?yàn)榈谝恍惺橇忻?br /> -file: 指明要導(dǎo)入的文件路徑

mongoimport的官方說明(可通過mongoimport --help查看):
--help         produce help message
-v [ --verbose ]    be more verbose (include multiple times for more
             verbosity e.g. -vvvvv)
--version        print the program's version and exit
-h [ --host ] arg    mongo host to connect to ( /s1,s2 for sets)
--port arg       server port. Can also use --host hostname:port
--ipv6         enable IPv6 support (disabled by default)
-u [ --username ] arg  username
-p [ --password ] arg  password
--dbpath arg      directly access mongod database files in the given
             path, instead of connecting to a mongod server -
             needs to lock the data directory, so cannot be used
             if a mongod is currently accessing the same path
--directoryperdb    if dbpath specified, each db is in a separate
             directory
--journal        enable journaling
-d [ --db ] arg     database to use
-c [ --collection ] arg collection to use (some commands)
-f [ --fields ] arg   comma separated list of field names e.g. -f name,age
--fieldFile arg     file with fields names - 1 per line
--ignoreBlanks     if given, empty fields in csv and tsv will be ignored
--type arg       type of file to import. default: json (json,csv,tsv)
--file arg       file to import from; if not specified stdin is used
--drop         drop collection first
--headerline      CSV,TSV only - use first line as headers
--upsert        insert or update objects that already exist
--upsertFields arg   comma-separated fields for the query part of the
             upsert. You should make sure this is indexed
--stopOnError      stop importing at first error rather than continuing
--jsonArray       load a json array, not one item per line. Currently
             limited to 16MB.

其他導(dǎo)入與導(dǎo)出操作:

1. mongoimport -d my_mongodb -c user user.dat

參數(shù)說明:

-d 指明使用的庫, 本例中為” my_mongodb”

-c 指明要導(dǎo)出的表, 本例中為”user”

可以看到導(dǎo)入數(shù)據(jù)的時候會隱式創(chuàng)建表結(jié)構(gòu)

2. mongoexport -d my_mongodb -c user -o user.dat

參數(shù)說明:

-d 指明使用的庫, 本例中為” my_mongodb”

-c 指明要導(dǎo)出的表, 本例中為”user”

-o 指明要導(dǎo)出的文件名, 本例中為”user.dat”

從上面可以看到導(dǎo)出的方式使用的是JSON 的樣式.

延伸 · 閱讀

精彩推薦
  • MongoDB遷移sqlserver數(shù)據(jù)到MongoDb的方法

    遷移sqlserver數(shù)據(jù)到MongoDb的方法

    這篇文章主要介紹了遷移sqlserver數(shù)據(jù)到MongoDb的方法,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下...

    聽楓xl9682021-01-03
  • MongoDBMongodb實(shí)現(xiàn)定時備份與恢復(fù)的方法教程

    Mongodb實(shí)現(xiàn)定時備份與恢復(fù)的方法教程

    這篇文章主要給大家介紹了Mongodb實(shí)現(xiàn)定時備份與恢復(fù)的方法教程,文中通過示例代碼介紹的非常詳細(xì),對大家具有一定的參考學(xué)習(xí)價值,需要的朋友們下面...

    chenjsh364522020-05-13
  • MongoDBMongoDB憑什么躋身數(shù)據(jù)庫排行前五

    MongoDB憑什么躋身數(shù)據(jù)庫排行前五

    MongoDB以比去年同期超出65.96分的成績繼續(xù)雄踞榜單前五,這個增幅在全榜僅次于PostgreSQL的77.99,而其相對于4月份的6.10分的增長也是僅次于微軟SQL Server排名...

    孫浩峰3892020-05-22
  • MongoDBMongoDB 內(nèi)存使用情況分析

    MongoDB 內(nèi)存使用情況分析

    都說 MongoDB 是個內(nèi)存大戶,但是怎么知道它到底用了多少內(nèi)存呢...

    MongoDB教程網(wǎng)10002020-09-29
  • MongoDBMongoDB中javascript腳本編程簡介和入門實(shí)例

    MongoDB中javascript腳本編程簡介和入門實(shí)例

    作為一個數(shù)據(jù)庫,MongoDB有一個很大的優(yōu)勢——它使用js管理數(shù)據(jù)庫,所以也能夠使用js腳本進(jìn)行復(fù)雜的管理——這種方法非常靈活 ...

    MongoDB教程網(wǎng)6982020-04-24
  • MongoDBmongodb基本命令實(shí)例小結(jié)

    mongodb基本命令實(shí)例小結(jié)

    這篇文章主要介紹了mongodb基本命令,結(jié)合實(shí)例形式總結(jié)分析了MongoDB數(shù)據(jù)庫切換、查看、刪除、查詢等基本命令用法與操作注意事項,需要的朋友可以參考下...

    dawn-liu3652020-05-26
  • MongoDBMongoDB安裝圖文教程

    MongoDB安裝圖文教程

    這篇文章主要為大家詳細(xì)介紹了MongoDB安裝圖文教程,分為兩大部分為大家介紹下載MongoDB和安裝MongoDB的方法,感興趣的小伙伴們可以參考一下 ...

    Yangyi.He6132020-05-07
  • MongoDB分布式文檔存儲數(shù)據(jù)庫之MongoDB分片集群的問題

    分布式文檔存儲數(shù)據(jù)庫之MongoDB分片集群的問題

    這篇文章主要介紹了分布式文檔存儲數(shù)據(jù)庫之MongoDB分片集群的問題,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋...

    Linux-18743072020-12-20
主站蜘蛛池模板: 婷婷草| 99r8这里精品热视频免费看 | 免费看国产一级片 | 乳环贵妇堕落开发调教番号 | 无限好资源免费观看 | 国产精品视频一区二区三区不卡 | 国产1区精品 | 精品国产福利一区二区在线 | 欧美三级免费观看 | 插入逼| 手机在线观看网站免费视频 | 奇米888在线看奇米999 | 日本草草视频 | 国产肥女bbwbbw | 日本高清免费中文字幕不卡 | 青青久久精品国产 | 欧美成人免费观看的 | 深夜在线观看网站 | 人体欣赏孕妇季玥图片 | 国语第一次处破女 | 国产精品嫩草影院在线看 | 69短视频 | 四虎e234hcom| 日韩高清在线免费观看 | 久久99热成人精品国产 | 国产精品日韩在线观看 | 国产欧美在线播放 | 日本不卡1卡2卡三卡网站二百 | 男人插曲女人下面 | pregnant欧美孕交xxx | 亚洲spank男男实践网站 | 大象传媒1234区| 四虎私人影院 | 亚洲精品老司机福利在线播放 | 国产在线91 | 亚洲XXX午休国产熟女屁 | 91日本在线| 国产美女极品免费视频 | 亚洲天堂视频在线免费观看 | 无敌在线视频观看免费 | 国产精品九九久久一区hh |