Print

License

Obtaining a License Key

At the time of writing this document, the first license is FREE! Contact us

Setup License Key – File Method

On the RioDB server, create the file <riodb home>/riodb/conf/license.txt
Paste the license key into the license.txt file, and nothing more. Then restart RioDB.
If you configured RioDB using our standard setup (install-riodb.sh), then the configuration directory path will be:

/opt/riodb-01/riodb/conf

And you can run the following commands to restart RioDB:

sudo systemctl restart riodb

Setup License Key – API Method

If the RioDB service is running and you are able to access it via curl or REST client, you can set the license key with the following command:

system set license key <the license key string> ;
## and the Stream processing can be started:
system start;

Or using CURL:

curl -k -u admin:RioDB! https://localhost:2333 -d 'system set license key <they key string> ;'
curl -k -u admin:RioDB! https://localhost:2333 -d 'system start ;'

Checking a License Key

Use this command to check the details of a license key, to know who obtained it, and when it expires:

system get license;

Or using curl:

curl -k -u admin:RioDB! https://localhost:2333 -d 'system get license;'

Table of Contents
Scroll to Top