1
0
Fork 0
arangodb/Documentation/man8/arango-password

26 lines
1000 B
Plaintext

COMMAND SECTION "DATE" "" "ArangoDB"
NAME
COMMAND - user setup utility for the ArangoDB database server
SYNOPSIS
COMMAND database-directory username [password]
DESCRIPTION
The COMMAND utility can be used to create additional users in an
ArangoDB database server.
The utility must be run with exclusive access to the server's data directory,
meaning the ArangoDB server must not be running and accessing the
datafiles in the specified data directory.
OPTIONS
The options of the COMMAND utility are:
OPTION "--database.directory <string>"
path to the database directory ENDOPTION
OPTION "username"
name of the user to add ENDOPTION
OPTION "password"
password for the user. Leave empty for a password prompt ENDOPTION
EXAMPLES
EXAMPLE COMMAND --database.directory /data/arangodb fuchsia
creates a new user "fuchsia". Password prompt will follow ENDEXAMPLE
EXAMPLE COMMAND --database.directory /data/arangodb fuchsia "1234@ab"
creates a new user "fuchsia" with the specified password ENDEXAMPLE
AUTHOR