mirror of https://gitee.com/bigwinds/arangodb
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
!SECTION Single instance deployment
|
|
|
|
TODO:
|
|
|
|
!SUBSECTION Docker
|
|
|
|
!SUBSUBSECTION Authentication
|
|
|
|
To start the official docker container you will have to decide on an authentication method. Otherwise the container won't start.
|
|
|
|
Provide one of the arguments to docker as an environment variable.
|
|
|
|
There are three options:
|
|
|
|
1. ARANGO_NO_AUTH=1
|
|
|
|
Disable authentication completely. Useful for local testing or for operating in a trusted network (without a public interface).
|
|
|
|
2. ARANGO_ROOT_PASSWORD=password
|
|
|
|
Start ArangoDB with the given password for root
|
|
|
|
3. ARANGO_RANDOM_ROOT_PASSWORD=1
|
|
|
|
Let ArangoDB generate a random root password
|
|
|
|
To get quickly going:
|
|
|
|
`docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 arangodb`
|
|
|
|
For an in depth guide about docker and arangodb please check the official documentation: https://hub.docker.com/r/_/arangodb/
|
|
|
|
Basically show the startup of a Docker image and explain about
|
|
authentication options.
|
|
|
|
Explain how to mount an external volume for the data (or link to external
|
|
information).
|
|
|
|
Mention the official `arangodb` and `arangodb/arangodb` images
|
|
as well as the `arangodb/arangodb-preview` image?
|
|
|
|
Explain specialities for Mac OSX. Say that as of June 2016, Windows not
|
|
supported with this. List fundamental operating systems we support.
|
|
|
|
!SUBSECTION Precompiled binaries and packages
|
|
|
|
Link to download page.
|
|
|
|
Linux:
|
|
For debian and rpm based Linux explain about directories of the data and
|
|
configuration.
|
|
|
|
OSX:
|
|
Explain specialities for OSX.
|
|
|
|
Windows:
|
|
Explain setup as service and for a single user, both supported?
|