Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »



On This Page


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

skysync-cli license show

Example results

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

Example results (JSON)

[
  {
    "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

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

skysync-cli license activate 123

Example results

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

skysync-cli license refresh

Expected results

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

Example results (JSON)

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

  • No labels