Created
February 18, 2019 05:53
-
-
Save MitchPierias/c5eb4d927ffbd358d45f1a1900d477d4 to your computer and use it in GitHub Desktop.
Revisions
-
MitchPierias created this gist
Feb 18, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ 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 ```