COMMAND SECTION "DATE" "" "ArangoDB" NAME COMMAND - a tool to create logical dumps of an ArangoDB database SYNOPSIS COMMAND [options] DESCRIPTION The COMMAND binary can be used to create logical dumps of collection meta information and collection data (documents) of an ArangoDB database. By default, all non-system collections of the specified ArangoDB database will be dumped with structural information and data. For each collection, a file named ".structure.json" will be created with information about the collection. When data is also dumped, an additional file ".data.json" will also be created. All dump files will be placed in a directory, which will be created by COMMAND when run. If the directory already exists, COMMAND will refuse to work unless started with the option "--overwrite true". COMMAND will work on the specified database only. If no database name is specified, COMMAND will work on the default database ("_system"). The dumped files can be re-stored in an ArangoDB database using the arangorestore tool. OPTIONS For a complete list of options, please refer to the ArangoDB online manual, available at http://www.arangodb.org/ The most important startup options are: OPTION "--configuration " read configuration from file ENDOPTION OPTION "--collection " name of collection to dump (can be specified multiple times). This can be used to restrict the dump to certain collections only. If not specified, all collections will be dumped ENDOPTION OPTION "--dump-data " when set to "true" will dump the data (documents) of the collection ENDOPTION OPTION "--include-system-collections " when set to "true" will also dump system collections, otherwise they will be excluded ENDOPTION OPTION "--output-directory " directory in which all dump files will be created. If the directory already exists, COMMAND will refuse to work unless started with option "--overwrite true" ENDOPTION OPTION "--overwrite " when set to "true", will overwrite any files in an existing output directory ENDOPTION OPTION "--progress " when set to "true", will display progress information ENDOPTION OPTION "--server.endpoint " server endpoint to connect to, consisting of protocol, ip address and port ENDOPTION OPTION "--server.database " database name to use when connection (default: "_system") ENDOPTION OPTION "--server.username " username to use when connecting (default "root") ENDOPTION OPTION "--server.password " password to use when connecting. Don't specify this option to get a password prompt ENDOPTION OPTION "--server.disable-authentication " disable the password prompt and authentication when connecting to the server ENDOPTION EXAMPLES AUTHOR