Skip to content

Instantly share code, notes, and snippets.

@MitchPierias
Created February 18, 2019 05:53
Show Gist options
  • Select an option

  • Save MitchPierias/c5eb4d927ffbd358d45f1a1900d477d4 to your computer and use it in GitHub Desktop.

Select an option

Save MitchPierias/c5eb4d927ffbd358d45f1a1900d477d4 to your computer and use it in GitHub Desktop.

Revisions

  1. MitchPierias created this gist Feb 18, 2019.
    25 changes: 25 additions & 0 deletions arango-brew-setup.md
    Original 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
    ```