Versions Compared

Key

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

Image RemovedImage Added

On This Page

Table of Contents


Managing SkySync Licenses

In the following example, the authentication parameters are provided within the configuration file.  See the authentication section for more information.  

Show the Active License

This command will show the details of the active license.

Example 1: Show the active license

In the following example, the authentication parameters are provided within the configuration file.  See the authentication section for more information.  

Command with example values

Code Block
skysync-cli license show

Example results

Code Block
License  123
Customer Acme Co (john@acme.com)
Expired

Example results (JSON)

Code Block
[
  {
    "key": "123",
    "customer": {
      "name": "Acme Co",
      "email": "john@acme.com"
    },
    "product": {
      "name": "SkySync v4"
    },
    "edition": {
      "name": "Enterprise"
    },
    "features": [
      "connection_a",
      "connection_b"
    ]
]

Activate a New License Key

This command provides the ability to activate a node (or nodes) with a license key.  The authentication parameters are provided within the configuration file.  See the authentication section for more information.  The parameters within the two curly braces (including the braces) will need to be replaced with valid values.

Command with variables

Code Block
skysync-cli license activate {{key}}

Example 1: Activate a new license key

In the following example, the authentication parameters are provided within the configuration file.  See the authentication section for more information.  

Command with sample values

Code Block
skysync-cli license activate 123

Example results

Code Block
License  123
Customer Acme Co (john@acme.com)
Expired

Refresh the Current License

This command provides the ability to refresh a license with the latest details from our licensing server.  This can be useful if you have changed your license recently, like adding additional supported connectors.  The authentication parameters are provided within the configuration file.  See the authentication section for more information.

Example 1: Refresh the current license

In the following example, the authentication parameters are provided within the configuration file.  See the authentication section for more information.  

Example with sample values

Code Block
skysync-cli license refresh

Expected results

Code Block
License  123
Customer Acme Co (john@acme.com)
Expired

Example results (JSON)

Code Block
[
  {
    "key": "123",
    "customer": {
      "name": "Acme Co",
      "email": "john@acme.com"
    },
    "product": {
      "name": "SkySync v4"
    },
    "edition": {
      "name": "Enterprise"
    },
    "features": [
      "connection_a",
      "connection_b"
    ]
]