Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Overview

The commercial Opmantek FirstWave application modules use a unified licensing setup, which relies on license data being installed locally on the servers the software is deployed to. As the system does not automatically retrieve or refresh licenses yet, it is possible to miss an expiring license if you don't use the applications interactively every day. This page describes the various ways to check your licenses quickly and efficiently.

...

Navigating to the opLicense module on your server will provide you with an overview of your current product installation and license states. The standard URL is http://<your_system_name_or_ip>/omk/opLicense/, and the view will include all installed and activated products and their license status similar to the following:

Image RemovedImage Added

API Endpoint

All applications released since 23 Nov 2015 also provide an API endpoint that allows you to query the license status of your system remotely.

...

Code Block
{
   "Open-AudIT Enterprise" : {
      "expires" : 1474346003,
      "eula" : 1,
      "valid" : 1,
      "text" : "Open-AudIT Enterprise 1.x is licensed to Opmantek for 10010000 nodesDevices - Expires 2023-SepJun-20162024"
   },
   "opEvents" : {
      "text" : "opEvents 1.0.0 is licensed to Opmantek FirstWave for 10000 Nodes - Expires 23-Jun-2024",
      "valid" : 1,
      "eula" : 1,
      "expires" : null
   },
   "opFlow" : {
      "valid" : 0,
      "text" : "No license installed for opFlow",
      "eula" : 0,
      "expires" : null
   },
}

...