成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

mongodbbackupandrestore-創(chuàng)新互聯(lián)

一、mongodb的冷備

創(chuàng)新互聯(lián)專注于企業(yè)成都營銷網(wǎng)站建設(shè)、網(wǎng)站重做改版、雙陽網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5高端網(wǎng)站建設(shè)、商城網(wǎng)站開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為雙陽等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

mongodb的冷備就是:復(fù)制庫的相關(guān)文件。因此在冷備前,要關(guān)閉服務(wù)器,本全中使用平滑關(guān)閉server的命令。

>use admin   >db.shutdownServer()  或者可以通過fsync方式使MongoDB將數(shù)據(jù)寫入緩存中,然后再復(fù)制備份 >use admin   >db.runCommand({"fsync":1,"lock":1})

鎖庫后執(zhí)行插入數(shù)據(jù)命令,發(fā)現(xiàn)無任何反應(yīng)。備份完后,要解鎖(防止這個(gè)時(shí)候停電或其它原因,導(dǎo)致未緩存中的數(shù)據(jù)丟失)。

>use admin   >db.$cmd.sys.unlock.findOne()   >db.currentOp()

如果currentOp 只返回{"inprog":[]}結(jié)果,說明解鎖成功。 解鎖后,數(shù)據(jù)才會成功寫入數(shù)據(jù)庫。

解鎖也可以使用以下命令:

>use admin >db.fsyncUnlock()

二、mongodb的熱備

    可以在不停止服務(wù)的情況下,使用MongoDB提供的兩個(gè)工具來實(shí)現(xiàn)備份和恢復(fù)。這個(gè)兩個(gè)工具在MongoDB的bin目錄下可以看到:mongodump/mongorestor

1、常用命令格

mongodump -h IP --port PORT -u UserName -p Password -d DB_name -c Collection_Name  --authenticationDatabase AuthDB_name -o BackupPath [--gzip]

    如果不指定用戶,可以去掉-u和-p;省略-h,默認(rèn)導(dǎo)出本機(jī)的數(shù)據(jù)庫;省略- -port默認(rèn)端口27017;省略-d默認(rèn)導(dǎo)出所有數(shù)據(jù)庫。

2、導(dǎo)出所有數(shù)據(jù)庫

[root@localhost mongodb]# mongodump -h 127.0.0.1 -o /home/user01/backup/

3、導(dǎo)出指定數(shù)據(jù)庫

[root@localhost mongodb]# mongodump -h 192.168.1.108 -d tank -o /home/user01/backup

三、mongorestore還原數(shù)據(jù)庫

1、常用命令格式

mongorestore -h IP --port PORT -u UserName -p Password -d DB_Name -c Collection_Name --drop BackupPath_Or_FileName

    --drop的意思是,先刪除所有的記錄,然后恢復(fù)。

2、恢復(fù)所有數(shù)據(jù)庫到mongodb中

[root@localhost mongodb]# mongorestore /home/user01/backup/  #這里的路徑是所有庫的備份路徑

3、還原指定的數(shù)據(jù)庫

[root@localhost mongodb]# mongorestore -d tank /home/user01/backup/tank/  #tank這個(gè)數(shù)據(jù)庫的備份路徑  [root@localhost mongodb]# mongorestore -d tank_new /home/user01/backup/tank/  #將tank還有tank_new數(shù)據(jù)庫中 這二個(gè)命令,可以實(shí)現(xiàn)數(shù)據(jù)庫的備份與還原,文件格式是json和bson的。無法指寫到表備份或者還原。

四、mongoexport導(dǎo)出表,或者表中部分字段

1、常用命令格式

mongoexport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數(shù)據(jù)庫 -c 表名 -f 字段 -q 條件導(dǎo)出 --csv -o 文件名

    上面的參數(shù)好理解,重點(diǎn)說一下:

-f   導(dǎo)出指字段,以字號分割,-f name,email,age導(dǎo)出name,email,age這三個(gè)字段

-q   可以根查詢條件導(dǎo)出,-q '{ "uid" : "100" }' 導(dǎo)出uid為100的數(shù)據(jù)

--csv表示導(dǎo)出的文件格式為csv的,這個(gè)比較有用,因?yàn)榇蟛糠值年P(guān)系型數(shù)據(jù)庫都是支持csv,在這里有共同點(diǎn)

2、導(dǎo)出整張表

[root@localhost mongodb]# mongoexport -d tank -c users -o /home/user01/backup/tank/users.dat

3、導(dǎo)出表中部分字段

[root@localhost mongodb]# mongoexport -d tank -c users --csv -f uid,name,sex -o tank/users.csv

4、根據(jù)條件敢出數(shù)據(jù)

[root@localhost mongodb]# mongoexport -d tank -c users -q '{uid:{$gt:1}}' -o tank/users.json

五、mongoimport導(dǎo)入表,或者表中部分字段

1、常用命令格式

    1) 還原整表導(dǎo)出的非csv文件

mongoimport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數(shù)據(jù)庫 -c 表名 --upsert --drop 文件名

    重點(diǎn)說一下--upsert,其他參數(shù)上面的命令已有提到,--upsert 插入或者更新現(xiàn)有數(shù)據(jù)

    2) 還原部分字段的導(dǎo)出文件

mongoimport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數(shù)據(jù)庫 -c 表名 --upsertFields 字段 --drop 文件名

    --upsertFields根--upsert一樣

    3) 還原導(dǎo)出的csv文件

mongoimport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數(shù)據(jù)庫 -c 表名 --type 類型 --headerline --upsert --drop 文件名

    上面三種情況,還可以有其他排列組合的。

2、還原導(dǎo)出的表數(shù)據(jù)

[root@localhost mongodb]# mongoimport -d tank -c users --upsert tank/users.dat

3、部分字段的表數(shù)據(jù)導(dǎo)入

[root@localhost mongodb]# mongoimport -d tank -c users  --upsertFields uid,name,sex  tank/users.dat

4、還原csv文件

[root@localhost mongodb]# mongoimport -d tank -c users --type csv --headerline --file tank/users.csv

六、實(shí)例

[root@meteor ~]# mkdir backup [root@meteor ~]# mongodump -h localhost --port 27027 -d person -o backup/ -u person -p 123 2016-08-04T10:09:36.701+0800writing person.p1 to 2016-08-04T10:09:36.701+0800done dumping person.p1 (1 document) [root@meteor ~]# ls backup/person/ p1.bson  p1.metadata.json [root@meteor ~]# mongo localhost:27027/admin -u admin -p MongoDB shell version: 3.2.8 Enter password: connecting to: localhost:27027/admin > use person switched to db person > show collections p1 > db.p1.drop() true > show collections > exit bye [root@meteor ~]# mongorestore -h localhost --port 27027 -d person backup/person/ -u person -p 123 2016-08-04T10:11:42.234+0800building a list of collections to restore from backup/person dir 2016-08-04T10:11:42.235+0800reading metadata for person.p1 from backup/person/p1.metadata.json 2016-08-04T10:11:42.256+0800restoring person.p1 from backup/person/p1.bson 2016-08-04T10:11:42.268+0800restoring indexes for collection person.p1 from metadata 2016-08-04T10:11:42.268+0800finished restoring person.p1 (1 document) 2016-08-04T10:11:42.268+0800done [root@meteor ~]# [root@meteor ~]# mongo localhost:27027/person -u person -p 123 MongoDB shell version: 3.2.8 connecting to: localhost:27027/person > show collections p1 > db.p1.find() { "_id" : ObjectId("57a2a28aa6d4803a1c952529"), "name" : "thompson", "gender" : "male", "age" : "24" } [root@meteor ~]# rm backup/* -rf [root@meteor ~]# mongoexport -h localhost --port 27027 -u person -p 123 -d person -c p1 -o backup/person.p1.dat 2016-08-04T10:22:06.773+0800connected to: localhost:27027 2016-08-04T10:22:06.773+0800exported 1 record [root@meteor ~]# mongoimport -h localhost --port 27027 -u person -p 123 -d person -c p2 --upsert backup/person.p1.dat 2016-08-04T10:25:16.414+0800connected to: localhost:27027 2016-08-04T10:25:16.434+0800imported 1 document [root@meteor ~]# mongo localhost:27027/person -u person -p 123 MongoDB shell version: 3.2.8 connecting to: localhost:27027/person > show collections p1 p2 > db.p2.find() { "_id" : ObjectId("57a2a28aa6d4803a1c952529"), "name" : "thompson", "gender" : "male", "age" : "24" } > db.p1.find() { "_id" : ObjectId("57a2a28aa6d4803a1c952529"), "name" : "thompson", "gender" : "male", "age" : "24" } { "_id" : ObjectId("57a2a9c43f2b617cfdd64c63"), "name" : "eric", "gender" : "female", "age" : 18 } { "_id" : ObjectId("57a2bfe38381eac036252b7c"), "name" : "test1", "gender" : "male", "age" : 20 } > exit bye [root@meteor ~]# rm -rf backup/* ; ls backup/ [root@meteor ~]# mongodump -h localhost --port 27027 -d person -o backup/ -u person -p 123    備份時(shí)備份整個(gè)庫中的所有表 2016-08-04T12:36:36.321+0800writing person.p1 to 2016-08-04T12:36:36.321+0800writing person.p2 to 2016-08-04T12:36:36.322+0800done dumping person.p1 (3 documents) 2016-08-04T12:36:36.322+0800done dumping person.p2 (1 document) [root@meteor ~]# ls backup/ person [root@meteor ~]# ls backup/person/ p1.bson  p1.metadata.json  p2.bson  p2.metadata.json [root@meteor ~]# mongo localhost:27027/person -u person -p 123 MongoDB shell version: 3.2.8 connecting to: localhost:27027/person > db.p1.drop() true > db.p2.drop() true > show collections > exit bye [root@meteor ~]# mongorestore -h localhost --port 27027 -d person -c p1 backup/person/p1.bson -u person -p 123         注:可以單獨(dú)恢復(fù)指定的表 2016-08-04T12:38:55.541+0800checking for collection data in backup/person/p1.bson 2016-08-04T12:38:55.541+0800reading metadata for person.p1 from backup/person/p1.metadata.json 2016-08-04T12:38:55.560+0800restoring person.p1 from backup/person/p1.bson 2016-08-04T12:38:55.639+0800restoring indexes for collection person.p1 from metadata 2016-08-04T12:38:55.640+0800finished restoring person.p1 (3 documents) 2016-08-04T12:38:55.641+0800done [root@meteor ~]# mongo localhost:27027/person -u person -p 123 MongoDB shell version: 3.2.8 connecting to: localhost:27027/person > show tables p1 > db.p1.find() { "_id" : ObjectId("57a2a9c43f2b617cfdd64c63"), "name" : "eric", "gender" : "female", "age" : 18 } { "_id" : ObjectId("57a2bfe38381eac036252b7c"), "name" : "test1", "gender" : "male", "age" : 20 } { "_id" : ObjectId("57a2a28aa6d4803a1c952529"), "name" : "thompson", "gender" : "male", "age" : "24" } > exit bye [root@meteor ~]

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

分享名稱:mongodbbackupandrestore-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://jinyejixie.com/article4/ccscie.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站自適應(yīng)網(wǎng)站、面包屑導(dǎo)航、云服務(wù)器、定制網(wǎng)站網(wǎng)站策劃

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設(shè)
高陵县| 页游| 荆门市| 万山特区| 兴文县| 凤山市| 绥滨县| 承德市| 荥阳市| 武义县| 五寨县| 佛山市| 呼和浩特市| 黄冈市| 长春市| 仁寿县| 英山县| 襄汾县| 平顶山市| 盘锦市| 酒泉市| 鹤峰县| 张掖市| 阿拉善左旗| 东辽县| 垦利县| 宜良县| 平武县| 岢岚县| 哈巴河县| 高要市| 眉山市| 尉氏县| 沈丘县| 光泽县| 齐齐哈尔市| 武陟县| 菏泽市| 扎兰屯市| 图木舒克市| 田阳县|