Install the orchestrator license

Usage of the Maverics Identity Orchestrator is covered by the terms and conditions documented on our website. If you were provided a license file for your orchestrator, use the following steps to install it.

Requirements

  • An installed instance of the Orchestrator.
  • Your maverics license file, maverics.lic.

Install Your License File

  1. Copy your license file to the server with your Orchestrator instance. If you do not have a license, contact [email protected].

  2. Move the license file to the /etc/maverics directory.

    sudo mv maverics.lic /etc/maverics/maverics.lic

    Make sure the file is owned by (or readable by) the maverics user.

    sudo chown maverics:maverics /etc/maverics/maverics.lic
  3. Restart the orchestrator.

    sudo systemctl restart maverics
  4. Follow the logs to verify your license is working.
    A successful license setup will output logs similar to below.

    journalctl --identifier=maverics --reverse
    -- Logs begin at ..., end at ... --   
    .... maverics[0123]: ts=... level=info msg="Licensed to Strata"   
    .... maverics[0123]: ts=... level=info msg="Order ID: 0123456789"   
    .... maverics[0123]: ts=... level=info msg="Entitled to 3 apps and 10 connectors"   
    .... maverics[0123]: ts=... level=info msg="Configured with 1 out of 10 licensed connectors"    
    .... maverics[0123]: ts=... level=info msg="Configured with 1 out of 3 licensed apps"
    ...

Using a Custom File Location for maverics.lic

Note: The maverics user must have read access to the license file.

  1. Edit the file /etc/systemd/system/maverics.env.
    Add the environment variable, MAVERICS_LICENSE, to the file with the value pointing to the Maverics license file.

    MAVERICS_LICENSE=/some/path/to/maverics.lic
  2. Restart the orchestrator.

    sudo systemctl restart maverics
  3. Follow the logs to verify your license is working.
    A successful license setup will output logs similar to below.

    journalctl --identifier=maverics --reverse
    -- Logs begin at ..., end at ... --   
    .... maverics[0123]: ts=... level=info msg="Licensed to Strata"   
    .... maverics[0123]: ts=... level=info msg="Order ID: 0123456789"   
    .... maverics[0123]: ts=... level=info msg="Entitled to 3 apps and 10 connectors"   
    .... maverics[0123]: ts=... level=info msg="Configured with 1 out of 10 licensed connectors"    
    .... maverics[0123]: ts=... level=info msg="Configured with 1 out of 3 licensed apps"
    ...