- Reference >
- Database Commands >
- Administration Commands >
- clone
clone¶
-
clone¶ The
clonecommand clones a database from a remote MongoDB instance to the current host.clonecopies the database on the remote instance with the same name as the current database. The command takes the following form:{ clone: "db1.example.net:27017" }
Replace
db1.example.net:27017above with the resolvable hostname for the MongoDB instance you wish to copy from. Note the following behaviors:clonecan copy from a non-primary member of a replica set.clonedoes not snapshot the database. If any clients update the database you’re copying at any point during the clone operation, the resulting database may be inconsistent.- You must run
cloneon the destination server. - The destination database will be locked periodically during the
cloneoperation. In other words,clonewill occasionally yield to allow other operations on the database to complete.
See
copydbfor similar functionality with greater flexibility.