I appreciate there is a Docker setup for ArcadeDB but I'm not clear on how to actually install it on Ubuntu? For OrientDB I followed this tutorial (https://computingforgeeks.com/install-and-configure-orientdb-on-ubuntu/?expand_article=1) but even looking through the Repo am not 100% clear. Please could someone explain how to install it?
Asked
Active
Viewed 22 times
1 Answers
0
It's super easy:
- download the distribution from GitHub Releases (https://github.com/ArcadeData/arcadedb/releases)
- unzip it in a local folder, then
- run
bin/server.sh
from inside the ArcadeDB directory.
The only requirement is having Java 11 or major, but Java 11 is the suggested version.

Lvca
- 8,938
- 2
- 24
- 25
-
Sorry to be a pain - how does one run it as a service? Otherwise closing the console disconnects. – Antony Aug 02 '23 at 13:42
-
You should configure it as a service (there is not service script for Ubuntu yet). Alternatively, you can always run it with: `nohup bin/server.sh &`. – Lvca Aug 03 '23 at 15:40