Verifying HCL Local License Server Installation

After you have installed HCL Local License Server (LLS), you must verify that the installation completed successfully and that the server is reachable and operational.

You can verify your LLS installation using any of the following methods:

Check LLS Health using API Request

Use the following GET API request to check server health:

https://FQDNhostname:LLSport/v1/health
Example Response:
{
    "status": "Active",
    "uptime": "42 hours, 22 minutes, 2 seconds",
    "timestamp": "2025-05-26T11:38:03.397Z"
}
This confirms that your LLS instance is active, secured, and running on TLS 1.3/1.2 as configured.
Verify LLS Service Status

Ensure that the LLS service is running properly.

On Windows:
  • Open Windows Services (service.msc).

  • Locate HCL Local License Server in the list.

  • Check that its Status is set to Running.

To manually manage the service:

  • Right-click → Start, Stop, or Restart.

On Linux:

Run the following commands:

systemctl status HCL-Local-License-Server-5.3.service

Enter the following commands to start / stop / restart the LLS service:


    systemctl stop HCL-Local-License-Server-5.3.service

    systemctl start HCL-Local-License-Server-5.3.service

    systemctl restart HCL-Local-License-Server-5.3.service
You can also check that LLS can retrieve additional information:

Using Browser (Windows):
Open the following URL:
https://<FQDNhostname>:<LLSport>/v1/licensepools/<poolID>
Using Command Line (Linux):

    curl --cacert /path/to/your/certificate.crt 
    https://<FQDNhostname>:<LLSport>/v1/licensepools/<poolID>
Where:
  • <FQDNhostname> = Fully Qualified Domain Name of the LLS host

  • <LLSport> = Port number used during installation (e.g., 443 or 8080)

  • <poolID> = Unique ID of your deployment

Locate Pool ID

You can find the Pool ID in either of the following ways:

From log file:

 <lls_install_directory>/logs/hcl_lls_pools.log
Or by using the API endpoint:
 https://<FQDNhostname>:<LLSport>/v1/licensepools

If the API and service checks return valid results, your HCL Local License Server 5.3 installation is verified and ready for configuration.