- Reference >
- MongoDB Package Components >
mongoexport
mongoexport¶
On this page
Synopsis¶
mongoexport is a utility that produces a JSON or CSV export
of data stored in a MongoDB instance. See the
Import and Export MongoDB Data document for a more in depth
usage overview, and the mongoimport document for more
information regarding the mongoimport utility, which
provides the inverse “importing” capability.
Considerations¶
Do not use mongoimport and mongoexport for
full-scale production backups because they may not reliably capture
data type information. Use mongodump and
mongorestore as described in MongoDB Backup Methods for this
kind of functionality.
Options¶
-
mongoexport¶
-
--help¶ Returns information on the options and use of mongoexport.
-
--verbose,-v¶ Increases the amount of internal reporting returned on standard output or in log files. Increase the verbosity with the
-vform by including the option multiple times, (e.g.-vvvvv.)
-
--quiet¶ Runs the mongoexport in a quiet mode that attempts to limit the amount of output.
This option suppresses:
- output from database commands
- replication activity
- connection accepted events
- connection closed events
-
--version¶ Returns the mongoexport release number.
-
--host<hostname><:port>,-h<hostname><:port>¶ Default: localhost:27017
Specifies a resolvable hostname for the
mongodto which to connect. By default, the mongoexport attempts to connect to a MongoDB instance running on the localhost on port number27017.To connect to a replica set, specify the
replica set nameand a seed list of set members. Use the following form:You can always connect directly to a single MongoDB instance by specifying the host and port number directly.
-
--port<port>¶ Default: 27017
Specifies the TCP port on which the MongoDB instance listens for client connections.
-
--ipv6¶ Enables IPv6 support and allows the mongoexport to connect to the MongoDB instance using an IPv6 network. All MongoDB programs and processes disable IPv6 support by default.
-
--ssl¶ New in version 2.6.
Enables connection to a
mongodormongosthat has TLS/SSL support enabled.The default distribution of MongoDB does not contain support for TLS/SSL. For more information on MongoDB and TLS/SSL, see Configure mongod and mongos for TLS/SSL.
-
--sslCAFile<filename>¶ New in version 2.6.
Specifies the
.pemfile that contains the root certificate chain from the Certificate Authority. Specify the file name of the.pemfile using relative or absolute paths.The default distribution of MongoDB does not contain support for TLS/SSL. For more information on MongoDB and TLS/SSL, see Configure mongod and mongos for TLS/SSL.
Warning
If the
mongoshell or any other tool that connects tomongosormongodis run without--sslCAFile, it will not attempt to validate server certificates. This results in vulnerability to expiredmongodandmongoscertificates as well as to foreign processes posing as validmongodormongosinstances. Ensure that you always specify the CA file against which server certificates should be validated in cases where intrusion is a possibility.
-
--sslPEMKeyFile<filename>¶ New in version 2.6.
Specifies the
.pemfile that contains both the TLS/SSL certificate and key. Specify the file name of the.pemfile using relative or absolute paths.This option is required when using the
--ssloption to connect to amongodormongosthat hasCAFileenabled withoutweakCertificateValidation.The default distribution of MongoDB does not contain support for TLS/SSL. For more information on MongoDB and TLS/SSL, see Configure mongod and mongos for TLS/SSL.
-
--sslPEMKeyPassword<value>¶ New in version 2.6.
Specifies the password to de-crypt the certificate-key file (i.e.
--sslPEMKeyFile). Use the--sslPEMKeyPasswordoption only if the certificate-key file is encrypted. In all cases, the mongoexport will redact the password from all logging and reporting output.If the private key in the PEM file is encrypted and you do not specify the
--sslPEMKeyPasswordoption, the mongoexport will prompt for a passphrase. See SSL Certificate Passphrase.The default distribution of MongoDB does not contain support for TLS/SSL. For more information on MongoDB and TLS/SSL, see Configure mongod and mongos for TLS/SSL.
-
--sslCRLFile<filename>¶ New in version 2.6.
Specifies the
.pemfile that contains the Certificate Revocation List. Specify the file name of the.pemfile using relative or absolute paths.The default distribution of MongoDB does not contain support for TLS/SSL. For more information on MongoDB and TLS/SSL, see Configure mongod and mongos for TLS/SSL.
-
--sslAllowInvalidCertificates¶ New in version 2.6.
Bypasses the validation checks for server certificates and allows the use of invalid certificates. When using the
allowInvalidCertificatessetting, MongoDB logs as a warning the use of the invalid certificate.The default distribution of MongoDB does not contain support for TLS/SSL. For more information on MongoDB and TLS/SSL, see Configure mongod and mongos for TLS/SSL.
-
--sslFIPSMode¶ New in version 2.6.
Directs the mongoexport to use the FIPS mode of the installed OpenSSL library. Your system must have a FIPS compliant OpenSSL library to use the
--sslFIPSModeoption.The default distribution of MongoDB does not contain support for TLS/SSL. For more information on MongoDB and TLS/SSL, see Configure mongod and mongos for TLS/SSL.
-
--username<username>,-u<username>¶ Specifies a username with which to authenticate to a MongoDB database that uses authentication. Use in conjunction with the
--passwordand--authenticationDatabaseoptions.
-
--password<password>,-p<password>¶ Specifies a password with which to authenticate to a MongoDB database that uses authentication. Use in conjunction with the
--usernameand--authenticationDatabaseoptions.If you do not specify an argument for
--password, mongoexport will prompt interactively for a password on the console.
-
--authenticationDatabase<dbname>¶ If you do not specify an authentication database, mongoexport assumes that the database specified to export holds the user’s credentials.
-
--authenticationMechanism<name>¶ Default: MONGODB-CR
New in version 2.4.
Changed in version 2.6: Added support for the
PLAINandMONGODB-X509authentication mechanisms.Specifies the authentication mechanism the mongoexport instance uses to authenticate to the
mongodormongos.Value Description MONGODB-CR MongoDB challenge/response authentication. MONGODB-X509 MongoDB TLS/SSL certificate authentication. PLAIN External authentication using LDAP. You can also use PLAINfor authenticating in-database users.PLAINtransmits passwords in plain text. This mechanism is available only in MongoDB Enterprise.GSSAPI External authentication using Kerberos. This mechanism is available only in MongoDB Enterprise.
-
--gssapiServiceName¶ New in version 2.6.
Specify the name of the service using GSSAPI/Kerberos. Only required if the service does not use the default name of
mongodb.This option is available only in MongoDB Enterprise.
-
--gssapiHostName¶ New in version 2.6.
Specify the hostname of a service using GSSAPI/Kerberos. Only required if the hostname of a machine does not match the hostname resolved by DNS.
This option is available only in MongoDB Enterprise.
-
--dbpath<path>¶ Specifies the directory of the MongoDB data files. The
--dbpathoption lets the mongoexport attach directly to the local data files without going through a runningmongod. When run with--dbpath, the mongoexport locks access to the data files. Nomongodcan access the files while the mongoexport process runs.
-
--directoryperdb¶ When used in conjunction with the corresponding option in
mongod, allowsmongoexportto export data from MongoDB instances that have every database’s files saved in discrete directories on the disk. This option is only relevant when specifying the--dbpathoption.
-
--journal¶ Enables the durability journal to ensure data files remain valid and recoverable. This option applies only when you specify the . The mongoexport enables journaling by default on 64-bit builds of versions after 2.0.
-
--db<database>,-d<database>¶ Specifies the name of the database on which to run the mongoexport.
-
--collection<collection>,-c<collection>¶ Specifies the collection to export.
-
--fields<field1[,field2]>,-f<field1[,field2]>¶ Specifies a field or fields to include in the export. Use a comma separated list of fields to specify multiple fields.
For
--csvoutput formats,mongoexportincludes only the specified field(s), and the specified field(s) can be a field within a sub-document.For JSON output formats,
mongoexportincludes only the specified field(s) and the_idfield, and if the specified field(s) is a field within a sub-document, themongoexportincludes the sub-document with all its fields, not just the specified field within the document.
-
--fieldFile<filename>¶ An alternative to
--fields. The--fieldFileoption allows you to specify in a file the field or fields to include in the export and is only valid with the--csvoption. The file must have only one field per line, and the line(s) must end with the LF character (0x0A).mongoexportincludes only the specified field(s). The specified field(s) can be a field within a sub-document.
-
--query<JSON>,-q<JSON>¶ Provides a JSON document as a query that optionally limits the documents returned in the export. Specify JSON in strict format.
For example, given a collection named
recordsin the databasetestwith the following documents:{ "_id" : ObjectId("51f0188846a64a1ed98fde7c"), "a" : 1 } { "_id" : ObjectId("520e61b0c6646578e3661b59"), "a" : 1, "b" : 2 } { "_id" : ObjectId("520e642bb7fa4ea22d6b1871"), "a" : 2, "b" : 3, "c" : 5 } { "_id" : ObjectId("520e6431b7fa4ea22d6b1872"), "a" : 3, "b" : 3, "c" : 6 } { "_id" : ObjectId("520e6445b7fa4ea22d6b1873"), "a" : 5, "b" : 6, "c" : 8 }
The following
mongoexportuses the-qoption to export only the documents with the fieldagreater than or equal to ($gte) to3:mongoexport -d test -c records -q "{ a: { \$gte: 3 } }" --out exportdir/myRecords.json
The resulting file contains the following documents:
{ "_id" : { "$oid" : "520e6431b7fa4ea22d6b1872" }, "a" : 3, "b" : 3, "c" : 6 } { "_id" : { "$oid" : "520e6445b7fa4ea22d6b1873" }, "a" : 5, "b" : 6, "c" : 8 }
You can sort the results with the
--sortoption tomongoexport.
-
--csv¶ Changes the export format to a comma-separated-values (CSV) format. By default
mongoexportwrites data using one JSON document for every MongoDB document.If you specify
--csv, then you must also use either the--fieldsor the--fieldFileoption to declare the fields to export from the collection.
-
--out<file>,-o<file>¶ Specifies a file to write the export to. If you do not specify a file name, the
mongoexportwrites data to standard output (e.g.stdout).
-
--jsonArray¶ Modifies the output of
mongoexportto write the entire contents of the export as a single JSON array. By defaultmongoexportwrites data using one JSON document for every MongoDB document.
-
--slaveOk,-k¶ Allows
mongoexportto read data from secondary or slave nodes when usingmongoexportwith a replica set. This option is only available if connected to amongodormongosand is not available when used with the “mongoexport --dbpath” option.This is the default behavior.
-
--forceTableScan¶ New in version 2.2.
Forces
mongoexportto scan the data store directly instead of traversing the_idfield index. Use--forceTableScanto skip the index. Typically there are two cases where this behavior is preferable to the default:- If you have key sizes over 800 bytes that would not be present
in the
_idindex. - Your database uses a custom
_idfield.
When you run with
--forceTableScan,mongoexportmay return a document more than once if a write operation interleaves with the operation to cause the document to move.Warning
Use
--forceTableScanwith extreme caution and consideration.- If you have key sizes over 800 bytes that would not be present
in the
-
--skip<number>¶ Use
--skipto control wheremongoexportbegins exporting documents. Seeskip()for information about the underlying operation.
-
--limit<number>¶ Specifies a maximum number of documents to include in the export. See
limit()for information about the underlying operation.
-
--sort<JSON>¶ Specifies an ordering for exported results. If an index does not exist that can support the sort operation, the results must be less than 32 megabytes.
Use
--sortconjunction with--skipand--limitto limit number of exported documents.See
sort()for information about the underlying operation.
Use¶
Export in CSV Format¶
In the following example, mongoexport exports data from the
collection contacts in the users database in CSV format
to the file /opt/backups/contacts.csv. The mongod
instance that mongoexport connects to is running on the
localhost port number 27017.
To export in CSV format, you must specify the fields in the documents
to export. The operation specifies the name and address fields
to export.
For CSV exports only, you can also specify the fields in a file containing the line-separated list of fields to export. The file must have only one field per line.
For example, you can specify the name and address fields in a
file fields.txt:
Then, by using the --fieldFile
option, you can specify the fields to export with the file:
Export in JSON Format¶
The next example creates an export of the collection contacts
from the MongoDB instance running on the localhost port number 27017,
with journaling explicitly enabled. This writes the export to the
contacts.json file in JSON format.
Export Collection Directly From Data Files¶
The following example exports the collection contacts from the
sales database located in the MongoDB data files located at
/srv/mongodb/. This operation writes the export to standard output
in JSON format.
Warning
The above example will only succeed if there is no mongod
connected to the data files located in the /srv/mongodb/
directory.
Export from Remote Host Running with Authentication¶
The following example exports the collection contacts from the
database marketing . This data resides on the MongoDB instance
located on the host mongodb1.example.net running on port 37017,
which requires the username user and the password pass.
Type Fidelity¶
Warning
mongoimport and mongoexport do not reliably
preserve all rich BSON data types because JSON can
only represent a subset of the types supported by BSON. As a result,
data exported or imported with these tools may lose some measure of
fidelity. See the Extended JSON
reference for more information.
JSON can only represent a subset of the types supported by BSON. To
preserve type information, mongoexport uses the strict
mode representation for certain
types.
For example, the following insert operation in the mongo
shell uses the mongoShell mode representation for the BSON types
data_date and data_numberlong:
Use mongoexport to export the data:
The exported data is in strict mode representation to preserve type information:
See MongoDB Extended JSON for a complete list of these types and the representations used.