mirror of https://gitee.com/bigwinds/arangodb
52 lines
2.4 KiB
Groff
52 lines
2.4 KiB
Groff
.TH arangorestore 1 "23 Feb 2016" "3.0.0-devel" "ArangoDB"
|
|
arangorestore SECTION "DATE" "" "ArangoDB"
|
|
.SH NAME
|
|
arangorestore - a data restore tool for the ArangoDB database
|
|
.SH SYNOPSIS
|
|
arangorestore [options]
|
|
.SH DESCRIPTION
|
|
The arangorestore binary can be used to restore data from logical dumps created
|
|
with the arangodump tool.
|
|
ArangoDB database. Input data be present in the input file in either CSV
|
|
format with column headlines, or in JSON format. If JSON format is used,
|
|
each line in the input file must contain exactly one JSON document with
|
|
the attribute name/value pairs to import.
|
|
.SH 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 <string>"
|
|
read configuration from file <string> ENDOPTION
|
|
OPTION "--collection <string>"
|
|
name of collection to restore (can be specified multiple times). This can be
|
|
used to restrict the restore operation to certain collections only. If not
|
|
specified, all collections from the "--input-directory" will be restored ENDOPTION
|
|
OPTION "--create-collection <bool>"
|
|
set to "true" if collections should be created ENDOPTION
|
|
OPTION "--import-data <bool>"
|
|
when set to "true" will restore the data (documents) of the collection ENDOPTION
|
|
OPTION "--include-system-collections <bool>"
|
|
when set to "true" will also restore system collections, otherwise they will be
|
|
excluded ENDOPTION
|
|
OPTION "--input-directory <string>"
|
|
input directory in which to look for dump files. ENDOPTION
|
|
OPTION "--overwrite <bool>"
|
|
when set to "true", will drop an existing collection before re-creating it ENDOPTION
|
|
OPTION "--progress <bool>"
|
|
when set to "true", will display progress information ENDOPTION
|
|
OPTION "--server.endpoint <string>"
|
|
server endpoint to connect to, consisting of protocol, ip address and port ENDOPTION
|
|
OPTION "--server.database <string>"
|
|
database name to use when connection (default: "_system") ENDOPTION
|
|
OPTION "--server.username <string>"
|
|
username to use when connecting (default "root") ENDOPTION
|
|
OPTION "--server.password <string>"
|
|
password to use when connecting. Don't specify this option to get a password prompt ENDOPTION
|
|
OPTION "--server.disable-authentication <boolean>"
|
|
disable the password prompt and authentication when connecting to the server ENDOPTION
|
|
EXAMPLES
|
|
.SH AUTHOR
|
|
Copyright ArangoDB GmbH, Cologne, Germany
|