I tried a mongo export like this:
./mongodump --db local --collection lecturer
and then I tried:
./mongodump --db local --collection posts --out - > lecturer .csv
and I get the same error message: Syntax Error: syntax error (shell):1
- What's wrong with my code?
- Where is the data stored if export successfully?
How to backup and restore databases
Start Mongo, open a new tab in terminal. First navigate to the folder where you want to save the backup, then type the following command.
Backup single database:
Restore single database:
(In this case,
****
represents any name for the database)Backup all databases:
Restore all databases:
mongodump
is a command-line utility and it's supposed to be run from the system command prompt, not the mongo javascript shell.if successful, this command will create some files under
dump
directory in the current dir.