Status pages
note
Try License Vault, our new cloud solution for license management! Hosted by JetBrains, License Vault doesn't require installation and can be accessed from any device with an internet connection. Learn more
License Server (FLS) administrator can make requests to the server in order to get brief information about health, current configuration, and connection state. In case you have a problem, or require full information, visit the FLS dashboard.
note
Available from build #17043
The /health
page shows if the server is registered and if it has connection to JetBrains Account. In the first case it returns 200 OK
and presents the serverUID
and lastCallHome
. Otherwise, the response is 500 Internal Error
with a problem description.
lastCallHome
shows the time of last connection to JetBrains servers. If the server is not able to connect to account.jetbrains.com
within a certain time limit, FLS stops serving user tickets and tries to connect to JetBrains Account every minute, see Communication with JetBrains Account.
Make sure the FLS server is running.
- LinuxmacOSWindows
Make the
/health
request to the FLS server. For example, if your base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/health
Make the
/health
request to the FLS server. For example, if your base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/health
Make the
/health
request to the FLS server. For example, if your base url ishttp://127.0.0.1:80
, open the following in a browser.You should see the response similar to the following:http://127.0.0.1:80/health
{"serverUID":"2veurqi4td","lastCallHome":"02 Jun 2018 21:37"}
The /check-configuration
page presents the base information such as current host and port, location of log files.
From build #19340 it also shows Max/Total JVM memory used by the FLS Java machine.
Make sure the FLS server is running.
- LinuxmacOSWindows
Make the
/check-configuration
request to the FLS server. For example, if the FLS base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/check-configuration
Base URL defined by host and port: http://0.0.0.0:8080 Location of log files: /opt/license-server-installer/logs Max/Total JVM memory: 300.00 Mb / 1024.00 Mb
Make the
/check-configuration
request to the FLS server. For example, if the FLS base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/check-configuration
Base URL defined by host and port: http://0.0.0.0:8080 Location of log files: /opt/license-server-installer/logs Max/Total JVM memory: 300.00 Mb / 1024.00 Mb
Make the
/check-configuration
request to the FLS server. For example, if the FLS base url ishttp://127.0.0.1:80
, open the following in a browser.You should see the response similar to the following:http://127.0.0.1:80/check-configuration
Configured base URL: http://unit-fls Base URL defined by host and port: http://127.0.0.1:80 Location of log files: C:\ProgramData\JetBrains\LicenseService\logs\LicenseService Location of configuration file: C:\ProgramData\JetBrains\LicenseService\conf\LicenseService Max/Total JVM memory: 276.00 Mb / 1024.00 Mb
The /check-connection
page shows if FLS connection to the JetBrains servers is successful.
Make sure the FLS server is running.
- LinuxmacOSWindows
Make the
/check-connection
request to the FLS server. For example, if your base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/check-connection
Make the
/check-connection
request to the FLS server. For example, if your base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/check-connection
Make the
/check-connection
request to the FLS server. For example, if your base url ishttp://127.0.0.1:80
, open the following in a browser.You should see the response similar to the following:http://127.0.0.1:80/check-connection
https://account.jetbrains.com OK https://www.jetbrains.com OK
The /check-version
page shows what FLS version you have, and if later versions are available.
Make sure the FLS server is running.
- LinuxmacOSWindows
Make the
/check-version
request to the FLS server. For example, if your base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/check-version
Make the
/check-version
request to the FLS server. For example, if your base url ishttp://0.0.0.0:8080
, open the following in a browser.You should see the response similar to the following:http://0.0.0.0:8080/check-version
Make the
/check-version
request to the FLS server. For example, if your base url ishttp://127.0.0.1:80
, open the following in a browser.You should see the response similar to the following:http://127.0.0.1:80/check-version
{"currentVersion":"20308","updateAvailable":false}
Thanks for your feedback!