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 the following sections on the left column of the Ansys LM Center:
- Reporting: View Current License Usage -- to check license usage (table view)
- Diagnostics: Display FlexNet License Status -- to list available licenses and usage (text format)
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
- Open a Windows command prompt and run:
"C:\Program Files\Lumerical\[[verpath]]\licensingclient\winx64\lmutil.exe" lmstat -c 1055@YOUR_SERVER -a
Linux
- Open Linux terminal and run:
/opt/lumerical/[[verpath]]/licensingclient/linx64/lmutil lmstat -c 1055@YOUR_SERVER -a
Where:
- 1055 == default (replace if changed)
- YOUR_SERVER == replace with your license server's hostname or IP address
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:
"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:
- 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:
"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:
See this page in the KB for a complete list of license features to products mapping.