mirror of https://gitee.com/bigwinds/arangodb
38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
COMMAND SECTION "DATE" "" "ArangoDB"
|
|
NAME
|
|
COMMAND - the ArangoDB shell
|
|
SYNOPSIS
|
|
COMMAND [options]
|
|
DESCRIPTION
|
|
The arangosh binary can be used to establish an interactive
|
|
client connection to the ArangoDB database. When the connection
|
|
is established, it can be used to execute actions on the server.
|
|
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 "--log.level <string>"
|
|
set the log level (possible values: "fatal", "error", "warning", "info", "debug", "trace") ENDOPTION
|
|
OPTION "--server.endpoint <string>"
|
|
server endpoint to connect to, consisting of protocol, ip address and port ENDOPTION
|
|
OPTION "--server.username <string>"
|
|
username to use when connecting (default "root") ENDOPTION
|
|
OPTION "--server.password <string>"
|
|
password to use when connecting. Leave empty for a password prompt ENDOPTION
|
|
EXAMPLES
|
|
EXAMPLE COMMAND
|
|
starts COMMAND with the default user and server endpoint ENDEXAMPLE
|
|
EXAMPLE COMMAND --server.username fuchsia
|
|
starts COMMAND with a specific user. Password prompt will follow ENDEXAMPLE
|
|
EXAMPLE COMMAND --server.username fuchsia --server.password "abcd@34"
|
|
starts COMMAND with a specific user and password given on command line ENDEXAMPLE
|
|
EXAMPLE COMMAND --server.endpoint tcp://192.168.173.13:8529
|
|
starts COMMAND connecting to a specific server ENDEXAMPLE
|
|
EXAMPLE COMMAND --server.endpoint ssl://192.168.173.13:8530
|
|
starts COMMAND connecting to a specific server using an SSL connection ENDEXAMPLE
|
|
AUTHOR
|