新聞中心
Mongo數(shù)據(jù)庫備份和恢復(fù)非常重要。備份是保證數(shù)據(jù)安全的之一步,在數(shù)據(jù)意外丟失和服務(wù)器出現(xiàn)問題時,可以使用備份來恢復(fù)數(shù)據(jù)。在Mongo數(shù)據(jù)庫中備份很容易,只需要將數(shù)據(jù)導(dǎo)出到一個文件中,需要用到的時候再將文件導(dǎo)入,恢復(fù)數(shù)據(jù)即可。

我們提供的服務(wù)有:網(wǎng)站制作、成都網(wǎng)站制作、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、侯馬ssl等。為千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的侯馬網(wǎng)站制作公司
本文將介紹Mongo數(shù)據(jù)庫的導(dǎo)出和導(dǎo)入操作。我們需要安裝MongoDB。安裝好后,我們需要連接MongoDB數(shù)據(jù)庫以進(jìn)行操作。
連接MongoDB
使用mongo命令連接到MongoDB實(shí)例。輸入以下命令:
“`
$ mongo
“`
這將連接到默認(rèn)端口上的MongoDB實(shí)例。如果您有指定的主機(jī)和端口,請使用以下命令:
“`
$ mongo –host :
“`
如果MongoDB實(shí)例中啟用了驗(yàn)證機(jī)制,請?zhí)峁{據(jù):
“`
$ mongo -u -p
“`
在連接到MongoDB實(shí)例后,我們將在本地機(jī)器上導(dǎo)出和導(dǎo)入數(shù)據(jù)。
Mongo數(shù)據(jù)庫導(dǎo)出
Mongo數(shù)據(jù)庫導(dǎo)出是將MongoDB中的數(shù)據(jù)保存到文件中。這將創(chuàng)建一個存檔文件,該文件可以用于恢復(fù)數(shù)據(jù)或?qū)?shù)據(jù)遷移到其他MongoDB實(shí)例。
在導(dǎo)出MongoDB數(shù)據(jù)之前,您需要選擇導(dǎo)出的數(shù)據(jù)庫和。為此,我們使用`use`命令。
“`
> use mydb
“`
在這個例子中,我們將使用`mydb`數(shù)據(jù)庫的情況?,F(xiàn)在,我們將手動導(dǎo)出數(shù)據(jù)。使用以下命令:
“`
> mongoexport –db mydb –collection mycollection –out backup.json
“`
這將導(dǎo)出`mycollection`的所有數(shù)據(jù),并將其保存在`backup.json`文件中。該文件將在當(dāng)前工作目錄中創(chuàng)建。
Mongo數(shù)據(jù)庫導(dǎo)入
Mongo數(shù)據(jù)庫導(dǎo)入是將MongoDB導(dǎo)出文件中的數(shù)據(jù)插入到MongoDB中。要導(dǎo)入數(shù)據(jù),我們只需要使用`mongorestore`命令。在這個例子中,我們假設(shè)您已經(jīng)將導(dǎo)出文件`backup.json`放在您當(dāng)前的工作目錄中。運(yùn)行以下命令:
“`
> mongorestore –db mydb –collection mycollection backup.json
“`
這將把`backup.json`文件中的數(shù)據(jù)導(dǎo)入到`mycollection`中。如果`mycollection`不存在,則MongoDB將創(chuàng)建該并將數(shù)據(jù)插入其中。
結(jié)論
相關(guān)問題拓展閱讀:
- mongodb用mongoexport命令導(dǎo)出數(shù)據(jù)為什么一直顯示百分之零
mongodb用mongoexport命令導(dǎo)出數(shù)據(jù)為什么一直顯示百分之零
一、導(dǎo)出棚判工具mongoexport
Mongodb中的mongoexport工具可以把一個collection導(dǎo)出成ON格式或CSV格式的文件??梢耘愫退胪ㄟ^參數(shù)指定導(dǎo)出的數(shù)據(jù)項(xiàng),也可以根據(jù)指定的條件導(dǎo)出數(shù)據(jù)。mongoexport具體用法如下所示:
Shell代碼
# ./蘆卜bin/mongoexport –help
Export MongoDB data to CSV, TSV or ON files.
options:
–help produce help message
-v be more verbose (include multiple times for more
verbosity e.g. -vvvvv)
–version print the program’s version and exit
-h argmongo host to connect to ( /s1,s2 for
sets)
–port arg server port. Can also use –host hostname:port
–ipvenable IPv6 support (disabled by default)
-u arg username
-p arg password
–dbpath argdirectly 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
–directoryperdbif dbpath specified, each db is in a separate
directory
–journal enable journaling
-d argdatabase to use
-c arg collection to use (some commands)
-f argcomma separated list of field names e.g. -f
name,age
–fieldFile argfile with fields names – 1 per line
-q argquery filter, as a ON string
–csvexport to csv instead of json
-o argoutput file; if not specified, stdout is used
–jsonArray output to a json array rather than one object per
line
-k arg (=1) use secondaries for export if available, default
true
參數(shù)說明:
-h:指明數(shù)據(jù)庫宿主機(jī)的IP
-u:指明數(shù)據(jù)庫的用戶名
-p:指明數(shù)據(jù)庫的密碼
-d:指明數(shù)據(jù)庫的名字
-c:指明collection的名字
-f:指明要導(dǎo)出那些列
-o:指明到要導(dǎo)出的文件名
-q:指明導(dǎo)出數(shù)據(jù)的過濾條件
實(shí)例:test庫中存在著一個students,中數(shù)據(jù)如下:
Js代碼
> db.students.find()
{ “_id” : ObjectId(“fea81e5”), “classid” : 1, “age” : 20, “name” : “kobe” }
{ “_id” : ObjectId(“a50fea81e6”), “classid” : 1, “age” : 23, “name” : “nash” }
{ “_id” : ObjectId(“a50fea81e7”), “classid” : 2, “age” : 18, “name” : “james” }
{ “_id” : ObjectId(“a50fea81e8”), “classid” : 2, “age” : 19, “name” : “wade” }
{ “_id” : ObjectId(“fea81e9”), “classid” : 2, “age” : 19, “name” : “bosh” }
{ “_id” : ObjectId(“fea81ea”), “classid” : 2, “age” : 25, “name” : “allen” }
{ “_id” : ObjectId(“b50fea81eb”), “classid” : 1, “age” : 19, “name” : “howard” }
{ “_id” : ObjectId(“503114a750fea81ec”), “classid” : 1, “age” : 22, “name” : “paul” }
{ “_id” : ObjectId(“503114cd50fea81ed”), “classid” : 2, “age” : 24, “name” : “shane” }
由上可以看出文檔中存在著3個字段:classid、age、name
1.直接導(dǎo)出數(shù)據(jù)到文件中
Shell代碼
# ./bin/mongoexport -d test -c students -o students.dat
connected to: 127.0.0.1
exported 9 records
命令執(zhí)行完后使用ll命令查看,發(fā)現(xiàn)目錄下生成了一個students.dat的文件
Shell代碼
-rw-r–r– 1 root rootAug 21 00:05 students.dat
查看該文件信息,具體信息如下:
Shell代碼
# cat students.dat
{ “_id” : { “$oid” : “fea81e5” }, “classid” : 1, “age” : 20, “name” : “kobe” }
{ “_id” : { “$oid” : “a50fea81e6” }, “classid” : 1, “age” : 23, “name” : “nash” }
{ “_id” : { “$oid” : “a50fea81e7” }, “classid” : 2, “age” : 18, “name” : “james” }
{ “_id” : { “$oid” : “a50fea81e8” }, “classid” : 2, “age” : 19, “name” : “wade” }
{ “_id” : { “$oid” : “fea81e9” }, “classid” : 2, “age” : 19, “name” : “bosh” }
{ “_id” : { “$oid” : “fea81ea” }, “classid” : 2, “age” : 25, “name” : “allen” }
{ “_id” : { “$oid” : “b50fea81eb” }, “classid” : 1, “age” : 19, “name” : “howard” }
{ “_id” : { “$oid” : “503114a750fea81ec” }, “classid” : 1, “age” : 22, “name” : “paul” }
{ “_id” : { “$oid” : “503114cd50fea81ed” }, “classid” : 2, “age” : 24, “name” : “shane” }
參數(shù)說明:
-d:指明使用的庫,本例中為test
-c:指明要導(dǎo)出的,本例中為students
-o:指明要導(dǎo)出的文件名,本例中為students.dat
從上面的結(jié)果可以看出,我們在導(dǎo)出數(shù)據(jù)時沒有顯示指定導(dǎo)出樣式 ,默認(rèn)導(dǎo)出了ON格式的數(shù)據(jù)。如果我們需要導(dǎo)出CSV格式的數(shù)據(jù),則需要使用–csv參數(shù),具體如下所示:
Shell代碼
# ./bin/mongoexport -d test -c students –csv -f classid,name,age -o students_csv.dat
connected to: 127.0.0.1
exported 9 records
# cat students_csv.dat
classid,name,age
1.0,”kobe”,20.0
1.0,”nash”,23.0
2.0,”james”,18.0
2.0,”wade”,19.0
2.0,”bosh”,19.0
2.0,”allen”,25.0
1.0,”howard”,19.0
1.0,”paul”,22.0
2.0,”shane”,24.0
#
參數(shù)說明:
-csv:指明要導(dǎo)出為csv格式
-f:指明需要導(dǎo)出classid、name、age這3列的數(shù)據(jù)
由上面結(jié)果可以看出,mongoexport成功地將數(shù)據(jù)根據(jù)csv格式導(dǎo)出到了students_csv.dat文件中。
二、導(dǎo)入工具mongoimport
Mongodb中的mongoimport工具可以把一個特定格式文件中的內(nèi)容導(dǎo)入到指定的collection中。該工具可以導(dǎo)入ON格式數(shù)據(jù),也可以導(dǎo)入CSV格式數(shù)據(jù)。具體使用如下所示:
Shell代碼
# ./bin/mongoimport –help
options:
–help produce help message
-v be more verbose (include multiple times for more
verbosity e.g. -vvvvv)
–version print the program’s version and exit
-h argmongo host to connect to ( /s1,s2 for sets)
–port argserver port. Can also use –host hostname:port
–ipv enable IPv6 support (disabled by default)
-u arg username
-p arg password
–dbpath argdirectly 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
–directoryperdbif dbpath specified, each db is in a separate
directory
–journal enable journaling
-d argdatabase to use
-c arg collection to use (some commands)
-f arg comma separated list of field names e.g. -f name,age
–fieldFile argfile with fields names – 1 per line
–ignoreBlanksif given, empty fields in csv and tsv will be ignored
–type argtype of file to import. default: json (json,csv,tsv)
–file argfile to import from; if not specified stdin is used
–drop drop collection first
–headerlineCSV,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
–stopOnErrorstop importing at first error rather than continuing
–jsonArrayload a json array, not one item per line. Currently
limited to 4MB.
參數(shù)說明:
-h:指明數(shù)據(jù)庫宿主機(jī)的IP
-u:指明數(shù)據(jù)庫的用戶名
-p:指明數(shù)據(jù)庫的密碼
-d:指明數(shù)據(jù)庫的名字
-c:指明collection的名字
-f:指明要導(dǎo)入那些列
示例:先刪除students中的數(shù)據(jù),并驗(yàn)證
Js代碼
> db.students.remove()
> db.students.find()
>
然后再導(dǎo)入上面導(dǎo)出的students.dat文件中的內(nèi)容
Shell代碼
# ./bin/mongoimport -d test -c students students.dat
connected to: 127.0.0.1
imported 9 objects
#
參數(shù)說明:
-d:指明數(shù)據(jù)庫名,本例中為test
-c:指明collection名,本例中為students
students.dat:導(dǎo)入的文件名
查詢students中的數(shù)據(jù)
Js代碼
> db.students.find()
{ “_id” : ObjectId(“fea81e5”), “classid” : 1, “age” : 20, “name” : “kobe” }
{ “_id” : ObjectId(“a50fea81e6”), “classid” : 1, “age” : 23, “name” : “nash” }
{ “_id” : ObjectId(“a50fea81e7”), “classid” : 2, “age” : 18, “name” : “james” }
{ “_id” : ObjectId(“a50fea81e8”), “classid” : 2, “age” : 19, “name” : “wade” }
{ “_id” : ObjectId(“fea81e9”), “classid” : 2, “age” : 19, “name” : “bosh” }
{ “_id” : ObjectId(“fea81ea”), “classid” : 2, “age” : 25, “name” : “allen” }
{ “_id” : ObjectId(“b50fea81eb”), “classid” : 1, “age” : 19, “name” : “howard” }
{ “_id” : ObjectId(“503114a750fea81ec”), “classid” : 1, “age” : 22, “name” : “paul” }
{ “_id” : ObjectId(“503114cd50fea81ed”), “classid” : 2, “age” : 24, “name” : “shane” }
>
證明數(shù)據(jù)導(dǎo)入成功
上面演示的是導(dǎo)入ON格式的文件中的內(nèi)容,如果要導(dǎo)入CSV格式文件中的內(nèi)容,則需要通過–type參數(shù)指定導(dǎo)入格式,具體如下所示:
先刪除數(shù)據(jù)
Js代碼
> db.students.remove()
> db.students.find()
>
再導(dǎo)入之前導(dǎo)出的students_csv.dat文件
Shell代碼
# ./bin/mongoimport -d test -c students –type csv –headerline –file students_csv.dat
connected to: 127.0.0.1
imported 10 objects
#
參數(shù)說明:
-type:指明要導(dǎo)入的文件格式
-headerline:指明之一行是列名,不需要導(dǎo)入
-file:指明要導(dǎo)入的文件
查詢students,驗(yàn)證導(dǎo)入是否成功:
Js代碼
> db.students.find()
{ “_id” : ObjectId(“c632cd118ad8”), “classid” : 1, “name” : “kobe”, “age” : 20 }
{ “_id” : ObjectId(“c632cd118ad9”), “classid” : 1, “name” : “nash”, “age” : 23 }
{ “_id” : ObjectId(“c632cd118ada”), “classid” : 2, “name” : “james”, “age” : 18 }
{ “_id” : ObjectId(“c632cd118adb”), “classid” : 2, “name” : “wade”, “age” : 19 }
{ “_id” : ObjectId(“c632cd118adc”), “classid” : 2, “name” : “bosh”, “age” : 19 }
{ “_id” : ObjectId(“c632cd118add”), “classid” : 2, “name” : “allen”, “age” : 25 }
{ “_id” : ObjectId(“c632cd118ade”), “classid” : 1, “name” : “howard”, “age” : 19 }
{ “_id” : ObjectId(“c632cd118adf”), “classid” : 1, “name” : “paul”, “age” : 22 }
{ “_id” : ObjectId(“c632cd118ae0”), “classid” : 2, “name” : “shane”, “age” : 24 }
關(guān)于mongo數(shù)據(jù)庫到處的介紹到此就結(jié)束了,不知道你從中找到你需要的信息了嗎 ?如果你還想了解更多這方面的信息,記得收藏關(guān)注本站。
香港服務(wù)器選創(chuàng)新互聯(lián),2H2G首月10元開通。
創(chuàng)新互聯(lián)(www.cdcxhl.com)互聯(lián)網(wǎng)服務(wù)提供商,擁有超過10年的服務(wù)器租用、服務(wù)器托管、云服務(wù)器、虛擬主機(jī)、網(wǎng)站系統(tǒng)開發(fā)經(jīng)驗(yàn)。專業(yè)提供云主機(jī)、虛擬主機(jī)、域名注冊、VPS主機(jī)、云服務(wù)器、香港云服務(wù)器、免備案服務(wù)器等。
分享名稱:輕松備份與恢復(fù):Mongo數(shù)據(jù)庫導(dǎo)出與導(dǎo)入實(shí)戰(zhàn)(mongo數(shù)據(jù)庫到處)
URL網(wǎng)址:http://fisionsoft.com.cn/article/cdhegje.html


咨詢
建站咨詢
