Skip to content

Instantly share code, notes, and snippets.

@elfeffe
Created February 11, 2020 04:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elfeffe/ee5dbd2b19e1f5f2a3760026b7cbef10 to your computer and use it in GitHub Desktop.
Save elfeffe/ee5dbd2b19e1f5f2a3760026b7cbef10 to your computer and use it in GitHub Desktop.
Move MongoDB collection to another server oneliner version
mongodump -v --archive --uri="mongodb://localhost:27017/DB_NAME" | mongorestore -v --archive -d DB_NAME --nsFrom DB_NAME.* --nsTo DB_NAME.* --uri="mongodb://DEST_IP:27017/DB_NAME"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment