...
Download the .exe file to install.
Run the installation setup.
Click Next.
Click I Agree.
Click Next.
Enter a password and the confirmation password for the root user. Select mmfiles for the engine. Click Next.
Click Install.
Allow for the files to be installed.
Click Finish
To Install the
...
Actify Database on Windows,
For the application and the Web GUI to reach the ArangoDB database, configure the endpoint to make it accessible.
...
Complete the database setup, by running Centro's database deploy script
To run the
...
Actify database deploy script
NOTE: If you installed ArangoDB to a non-"C" drive, you will have to modify the setup.bat file as shown below;
...
Extract the C7-deploy-7.x.0xxxx.xxxx.zip file
In the Power Shell, navigate to the deploy folder.
Run the Setup.bat file.
Follow the script instructions.
The Centro deployment script creates a "Centro" user to use when setting up the web application and services rather than using the database root user.
...
Code Block |
---|
cd c:\Program Files\ArangoDB3 3.2x.5x\usr\bin arangosh require("@arangodb/users").save("username","password") require("@arangodb/users").grantDatabase("username","ActifyDB") require("@arangodb/users").grantCollection("username", "ActifyDB", "*", "rw") exit |
Note: The c:\Program Files\ArangoDB3 3.2x.5x\usr\bin directory path is based on the version of Arangodb you've installed. Adjust accordingly.
...