MongoDB 速记

1. 备份数据库

mongodump -h localhost:27017 -d controller_1 -o /tmp/

-h
MongDB所在服务器地址,例如:localhost,当然也可以指定端口号:localhost:27017
-d
需要备份的数据库实例,例如:controller_1
-o
备份的数据存放位置,例如:/tmp,当然该目录需要提前建立,在备份完成后,系统自动在/tmp目录下建立一个controller_1目录,这个目录里面存放该数据库实例的备份数据。

2. 恢复数据库

mongorestore -h localhost:27017 -d controller_1_tencent_2019_4_19 /tmp/controller_1

-h
MongDB所在服务器地址,例如:localhost,当然也可以指定端口号:localhost:27017
-d
指定恢复出来后数据库的名称,可以与当初备份时的名称不一样,例如:controller_1_tencent_2019_4_19

最后一个参数指从何处读取数据,即当初备份数据库的路径,如:/tmp/controller_1

你可能感兴趣的:(MongoDB 速记)