windows下面mongodb數(shù)據(jù)庫(kù)備份和恢復(fù)
我可以講數(shù)據(jù)備份到c:\data\dump目錄下面,首先創(chuàng)建這個(gè)路徑。然后進(jìn)入到mongodb的bin目錄下面
我的是:
C:\Program Files\mongodb\bin
備份腳本是:
//備份 mongodump -h 127.0.0.1:27017 -d test -o c:\data\dump
恢復(fù)腳本是:
//恢復(fù) mongorestore -h 127.0.0.1:27017 -d test --directoryperdb c:\data\dump\test
解釋一下用到的命令
原始解釋:
-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 ( set name>/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 --authenticationDatabase arg user source (defaults to dbname) --authenticationMechanism arg (=MONGODB-CR) authentication mechanism --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 each db is in a separate directly (relevant only if dbpath specified) --journal enable journaling (relevant only if dbpath specified) -d [ --db ] arg database to use -c [ --collection ] arg collection to use (some commands) --objcheck validate object before inserting (default) --noobjcheck don't 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 include oplog entries before the provided Timestamp (seconds[:ordinal]) during the oplog replay; the ordinal value is optional --keepIndexVersion don't upgrade indexes to newest version --noOptionsRestore don't restore collection options --noIndexRestore don't restore indexes --w arg (=0) minimum number of replicas per write
linux下面mongodb數(shù)據(jù)庫(kù)備份和恢復(fù)
linux下面我們可以創(chuàng)建一個(gè)自動(dòng)備份腳本,可以設(shè)置定時(shí)任務(wù),也可以手動(dòng)備份。我是手動(dòng)備份的。
首先創(chuàng)建一個(gè)sh命令,我是放在home下面的。
vim /home/mongoBeiFen.sh
輸入如下內(nèi)容:
#!/bin/bash shijie=`date +%Y%m%d%H` backmongodbFile=mongodb$shijie.tar.gz cd /home/mongoDbback/ /usr/local/mongo/bin/mongodump -h 127.0.0.1 --port 27017 -u mongo -p 123456 -d my_mongodb -o my_mongodb_dump/ tar czf $backmongodbFile my_mongodb_dump/ rm my_mongodb_dump -rf
解釋:
存放備份的文件夾是/home/mongoDbback/
-u是數(shù)據(jù)庫(kù)名用戶名 -p是密碼 -d是數(shù)據(jù)庫(kù)名 具體和window差不多,大家可以看下上面windows的解釋。
備份的時(shí)候只要運(yùn)行一下
./mongoBeiFen.sh
就可以了。
數(shù)據(jù)庫(kù)恢復(fù):
/usr/local/mongo/bin/mongorestore -d my_mongodb my_mongodb_dump/my_mongodb/*
指向每個(gè)文件
指向一個(gè)目錄
有問(wèn)題的話可以嘗試window的寫法:
/usr/local/mongo/bin/mongorestore -h 127.0.0.1:27017 -d test --drop --directoryperdb my_mongodb_dump/my_mongodb
標(biāo)簽:昭通 吉安 景德鎮(zhèn) 鶴崗 邯鄲 丹東 大理 本溪
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Windows或Linux系統(tǒng)中備份和恢復(fù)MongoDB數(shù)據(jù)的教程》,本文關(guān)鍵詞 Windows,或,Linux,系統(tǒng),中,備份,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。