I need to run noSQL database, especially, eXist-db so called High-performance native XML database engine available at http://exist-db.org/exist/apps/homepage/index.html on Digital Ocean. I have two questions:
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
I am one of the eXist-db core developers. At the moment there is no official eXist-db Droplet for Digital Ocean.
You likely have 4 main options -
Take a Linux droplet, such as Ubuntu, and install eXist-db and its dependencies as per the eXist-db documentation. I think that is already discussed above.
Take the Docker droplet - https://marketplace.digitalocean.com/apps/docker and then deploy an eXist-db Docker container from https://hub.docker.com/r/existdb/existdb
Use the Digital Ocean Kubernetes solution and deploy an eXist-db Docker container.
Build your own eXist-db droplet for Digital Ocean. This mainly involves step (1) and then repackaging it.
If there is enough interest, we might consider providing an official eXist-db Droplet for Digital Ocean.
Hello,
According to the official eXist-DB documentation, the minimum system requirements are:
This means that you could start with the smallest Droplet at $5 per month and then upgrade if you ever need to.
Regarding the installation, first you would have to install Java, you can follow the steps on how to do that here:
https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-on-ubuntu-18-04
After that I would suggest following the steps from the official eXist-db documentation :
Download the installer by following the download link on the eXist-db homepage page. We recommend that you download the latest stable release. The installer is a single file called eXist-db-setup-[version].jar (for instance eXist-db-setup-3.6.1.jar).
Upload the installer to your droplet
Then launch the installer:
Then if you’ve selected the default installation directory you could start the service up with the following:
Then by default the application would start on port 8080 and port 8443, so if you visit your droplet’s IP followed by the 8080 port you should see the application.
Hope that this helps! Regards, Bobby