The Ansys license management center is only available on the license server machine with admin/root access. Checking the license status and availability from the client computer is done using a different method. The process outlined here shows how to check for the Ansys license manager status, usage, and availability of licenses on a different license server machine from your local computer running Lumerical.
Requisites
- Lumerical 2021 R1 and newer
- Ansys license manager 2021 R1 and newer installed and running on the license server
Checking the license status on the server
Ansys License Management Center
Checking the license status and license availability and usage from the server using the graphical web interface, Ansys License Management Center.
- Log into the license server running the Ansys license manager.
- Open a browser and go to: http://localhost:1084/
- Navigate to "Diagnostics: Display FlexNet License Status" on the left column of the Ansys LM Center. This shows the list of available licenses and current usage.
Command Prompt
License status check via the command prompt in Windows or terminal in Linux, while logged into the server running the Ansys License Manager. Default install path and port configuration shown below.
Windows:
"C:\Program Files\ANSYS Inc\Shared Files\Licensing\winx64\lmutil" lmstat -c 1055@localhost -a
Linux:
/ansys_inc/shared_files/licensing/linx64/lmutil lmstat -c 1055@localhost -a
Checking license status from a client machine
Windows PowerShell
- Open Windows PowerShell and run:
Test-NetConnection <YOUR_SERVER> -Port 1055
Test-NetConnection <YOUR_SERVER> -Port 1056
& 'C:\Program Files\Lumerical\[[verpath]]\licensingclient\winx64\lmutil.exe' lmstat -c 1055@<YOUR_SERVER> -a
Linux
- Open Linux terminal and run:
telnet <YOUR_SERVER> 1055
telnet <YOUR_SERVER> 1056
/opt/lumerical/[[verpath]]/licensingclient/linx64/lmutil lmstat -c 1055@<YOUR_SERVER> -a
Where:
- 1055 == default LM port (otherwise, use the one set in the license file)
- 1056 == suggested VENDOR port (otherwise, use the one set in the license file)
- YOUR_SERVER == replace with your license server's HostName or IP address
See Knowledge Base (KB) for details on configuring the license manager with static ports for license sharing.
The default installation path is shown for [[ver]]. Change to the version installed on your computer. Consult with IT or your license server administrator for the license server information.
Example
- Checking for FDTD license usage and availability on the Ansys LM running on the server with hostname, "licserver01" on TCP port 1055 (default port).
-
Windows PowerShell:
'C:\Program Files\Lumerical\[[verpath]]\licensingclient\winx64\lmutil.exe' lmstat -c 1055@licserver01 -a | findstr "fdtd"
-
Linux:
/opt/lumerical/[[verpath]]/licensingclient/linx64/lmutil lmstat -c 1055@licserver01 -a | grep "fdtd"
-
Windows PowerShell:
- License status for CHARGE CAD and solver licenses on the server with IP address, "192.168.1.1" on TCP port 27001. (custom port).
-
Windows PowerShell:
'C:\Program Files\Lumerical\[[verpath]]\licensingclient\winx64\lmutil.exe' lmstat -c 27001@192.168.1.1 -a | findstr "multiphysics"
'C:\Program Files\Lumerical\[[verpath]]\licensingclient\winx64\lmutil.exe' lmstat -c 27001@192.168.1.1 -a | findstr "charge" -
Linux:
/opt/lumerical/[[verpath]]/licensingclient/linx64/lmutil lmstat -c 27001@192.168.1.1 -a | grep "multiphysics"
/opt/lumerical/[[verpath]]/licensingclient/linx64/lmutil lmstat -c 27001@192.168.1.1 -a | grep "charge"
-
Windows PowerShell:
See this page in the KB for a complete list of license features to products mapping.