1、 mongodump備份數據庫mongodb
1.通常經常使用的備份命令格式數據庫
mongodump -h IP --port 端口 -u 用戶名 -p 密碼 -d 數據庫 -o 文件存在路徑
2.導出數據庫[root@local ~]# mongodump -h 127.0.0.1 --port 30216 -d test -uxxxx -pxxxxx -o home/mongodb/
connected to: 10.10.3.245:30216
Thu Aug 11 02:15:04.529 DATABASE: test to /home/mongodb/test
json
2、mongorestore還原數據庫
1.經常使用命令格式bash
mongorestore -h IP --port 端口 -u 用戶名 -p 密碼 -d 數據庫 --drop 文件存在路徑
[root@localhost mongodb]# mongorestore -d test /home/mongodb/test #test這個數據庫的備份路徑
app
3、mongoexport導出表,或者表中部分字段ide
1.經常使用命令格式svg
mongoexport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數據庫 -c 表名 -f 字段
-q 條件導出 --csv -o 文件名 上面的參數好理解,重點說一下:
-f 導出指字段,以字號分割,-f name,email,age導出name,email,age這三個字段
-q 能夠根查詢條件導出,-q '{ "_id" : "10001" }' 導出uid爲100的數據
--csv 表示導出的文件格式爲csv的,這個比較有用,由於大部分的關係型數據庫都是支持csv,在這裏有共同點ui
2.導出整張表url
[root@localhost mongodb]# mongoexport -d test -c users -o /home/mongodb/test/users.dat connected to: 127.0.0.1 exported 24 records
3.導出表中部分字段spa
[root@localhost mongodb]# mongoexport -d test -c users --csv -f uid,name,sex -o test/users.csv connected to: 127.0.0.1 exported 24 records
4.根據條件敢出數據
[root@localhost mongodb]# mongoexport -d test -c users -q '{uid:{$gt:1}}' -o test/users.json connected to: 127.0.0.1 exported 12 records
4、mongoimport導入表,或者表中部分字段
1.經常使用命令格式
1.1 還原整表導出的非csv文件
mongoimport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數據庫 -c 表名 --upsert --drop 文件名
1.2 還原部分字段的導出文件
mongoimport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數據庫 -c 表名 --upsertFields 字段 --drop 文件名 --upsertFields根--upsert同樣
1.3 還原導出的csv文件
mongoimport -h IP --port 端口 -u 用戶名 -p 密碼 -d 數據庫 -c 表名 --type 類型 --headerline --upsert --drop文件名
2.還原導出的表數據
[root@localhost mongodb]# mongoimport -d test -c users --upsert test/users.dat connected to: 127.0.0.1 ............
3.部分字段的表數據導入
[root@localhost mongodb]# mongoimport -d test -c users --upsertFields uid,name,sex test/users.dat connected to: 127.0.0.1 ...............................................
4.還原csv文件
[root@localhost mongodb]# mongoimport -d test -c users --type csv --headerline --file test/users.csv connected to: 127.0.0.1 ...........................................