UCloud logo UCloud logo UCloud
v2026.3.0
  1. UCloud/Core
  2. 1. Introduction
  3. 2. Projects
  4. 3. Accounting
  5. 4. Orchestration
  6. 5. Frontend
  7. UCloud/IM for Slurm-based HPC
  8. 6. Installation
  9. 7. Architecture and Networking
  10. 8. User and Project Management
  11. 9. Filesystem Integration
    1. 9.1. Inter-provider file transfers
  12. 10. Slurm Integration
    1. 10.1. Application Management
    2. 10.2. Built-in Applications
  13. 11. Reference
    1. 11.1. Configuration
    2. 11.2. CLI
  14. 12. Appendix
    1. 12.1. Built-in Application Index
  15. UCloud/IM for Kubernetes
  16. 13. Installation
  17. 14. Architecture and Networking
  18. 15. Filesystem Integration
  19. 16. Compute Jobs
    1. 16.1. Public Links
    2. 16.2. Public IPs
    3. 16.3. License Servers
    4. 16.4. SSH Servers
    5. 16.5. Job Audit Log
    6. 16.6. Virtual machines
  20. 17. Integrated applications
    1. 17.1. Syncthing
    2. 17.2. Integrated terminal
  21. 18. UCX applications
    1. 18.1. Hello world
    2. 18.2. Data binding
    3. 18.3. UI events
    4. 18.4. Component reference
    5. 18.5. API reference
  22. 19. Reference
    1. 19.1. Configuration
    2. 19.2. CLI
  23. Branding for UCloud
  24. 20. Branding and identity for UCloud
  25. H: Procedures
  26. 21. H: Procedures
  27. 22. H: Introduction
  28. 23. H: Auditing
  29. 24. H: Auditing scenario
  30. 25. H: GitHub actions
  31. 26. H: Deployment
  32. 27. H: 3rd party dependencies (risk assesment)
  1. Links
  2. Source Code
  3. Releases

Software Licenses

The software license feature allows operators to register and manage license server information for licensed software products. These licenses can then be consumed by jobs at submission time.

Licenses are represented as standalone products and are tracked and accounted for independently of jobs. A license may optionally reference a license server address, port, and license key.

When a software license is configured:

  • The license is registered as a UCloud product with accounting enabled.
  • License metadata is stored in the integration module database.
  • Active license usage is tracked per user or project.
  • License parameters are resolved and injected into jobs at submission time.

The license system does not manage the license server itself. It only stores and distributes connection and license information to jobs.

License definition

Each license entry consists of the following fields:

  • Name: The unique name of the license.
  • Address (optional): The hostname or IP address of the license server.
  • Port (optional): The port used by the license server.
  • License key (optional): A license key or identifier required by the licensed software.

All fields except the name are optional. A license may exist without a server address, port, or license key.

Job integration

Licenses are applied to jobs through application parameters. When a job is submitted:

  • License parameters are resolved server-side.
  • The license reference is converted into a string representation.
  • The resolved value is passed to the application template.

The conversion format is:

<address>:<port>/<license>

Rules for formatting:

  • If the address is not set, null is used.
  • If the port is not set, null is used.
  • The /license suffix is only included if a license key is present.

Examples:

  • licenseserver.example.com:27000/ABC-123
  • licenseserver.example.com:27000
  • null:null/ABC-123
  • null:null

The application is responsible for interpreting this value.

Requirements and prerequisites

For licenses to function correctly:

  1. The license must be registered by an operator
  2. Any referenced license server must be reachable from the job runtime environment.
  3. Network connectivity, firewall rules, and routing to the license server must be handled externally.

The integration module does not validate license server reachability.

License management CLI

Licenses are managed using the ucloud license command. All commands must be run from the integration module shell and require root privileges.

List licenses

$ ucloud license ls

Lists all registered licenses and their associated metadata:

  • Name
  • Address
  • Port
  • License key

Add or update a license

$ ucloud license add <name> [--address=<address>] [--license=<license>]
  • name is used to identify the license and will be used as the name presented to end-users
  • --address specifies the license server hostname and optionally a port.
  • --license specifies the license key.

If a port is not specified as part of --address, a default port of 8080 is assumed.

Examples:

$ ucloud license add abaqus --address=licenses.example.com:27000 --license=ABC-123
$ ucloud license add matlab --address=licenses.example.com

Running the command again with the same name updates the existing license entry.

Remove a license

$ ucloud license rm <name>

Removes the license configuration from the integration module.

This does not delete the license product from UCloud but makes it unusable for future jobs.

Previous Public IPs
Next SSH Servers