5

I have a flexlm licence manager running on a remote server.

Does anyone know how to poll the server to find out what licences are in use?

blokeley
  • 6,726
  • 9
  • 53
  • 75

1 Answers1

6

It seems the only way to get licence usage over a network is to poll the flexlm daemon using:

lmutil lmstat -a -c <port-number@license-server>

I've not marked orenhg's repsonse as an answer as it is advertising his product rather than answering the question.

blokeley
  • 6,726
  • 9
  • 53
  • 75
  • for future readers, the < and > characters should not be included in the command. – Rick Apr 11 '16 at 18:47
  • Or, to test the LM_LICENSE_FILE var assignment (and possible save typing) use: `lmutil lmstat -a -c %LM_LICENSE_FILE%` – Jim Fred Jun 22 '16 at 15:06