Skip to content

Instantly share code, notes, and snippets.

@MitchPierias
Created February 18, 2019 05:53
Show Gist options
  • Save MitchPierias/c5eb4d927ffbd358d45f1a1900d477d4 to your computer and use it in GitHub Desktop.
Save MitchPierias/c5eb4d927ffbd358d45f1a1900d477d4 to your computer and use it in GitHub Desktop.

If you are using homebrew, then you can install the latest released stable version of ArangoDB using brew as follows:

brew install arangodb

This will install the current stable version of ArangoDB and all dependencies within your Homebrew tree. Note that the server will be installed as:

/usr/local/Cellar/arangodb/3.4.0/sbin/arangod

You can start the server by running the command:

/usr/local/Cellar/arangodb/3.4.0/sbin/arangod &

Configuration file is located at

/usr/local/etc/arangodb3/arangod.conf

The ArangoDB shell will be installed as:

/usr/local/Cellar/arangodb/3.4.0/bin/arangosh

You can uninstall ArangoDB using:

brew uninstall arangodb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment