Licensing
Once the server is installed, on its first run it will perform the database migration and provide the initial user credentials for configuration.
1. Retrieve access data
- Run
sudo docker ps
to obtain the container identifier. - Run
sudo docker logs <container_id>
to view the logs of the newly created container.
2. Licensing process
Within the container logs you will obtain output similar to:
*************************************************
Admin User: {ADMIN_EMAIL}
Admin Password: {ADMIN_PASSWORD}
Client ID (For Licensing): {CLIENT_ID}
*************************************************
Contact your assigned advisor and provide the CLIENT_ID so the server license can be assigned.
3. Load development license
The support team will provide a temporary license code during setup. Set it as an environment variable for the container using the following structure:
INITIAL_LICENSE_KEY="" // License code provided by the support team
4. Restart server to apply license
After saving the environment variable for the license, run sudo docker compose up -d --force-recreate
to restart the container and apply the changes.