Hello everyone,
I'm having trouble migrating my FlexNet Publisher onto a Linux server. I am running the command nohup lmgrd -c license.dat in the directory of where the Flexnet Publisher software is downloaded but I would get this error:
nohup: failed to run command 'lmgrd': No such file or directory
I have already followed this solution but I still get the same error. Any suggestions?
Found my solution:
The initial problem with "nohup: failed to run command 'lmgrd': No such file or directory" was resolved by using nohup./lmgrd -c license.dat -l debug.log
The other problem with conflicting port number was that the main service (lmgrd) was running on 8224 and if you don't specify the port for the vendor daemon (armlmd), armlmd will attempt to run on 8224 as well. So lmgrd will complain that it's port is in use.
So I assigned the main service to port 8224 and armlmd to port 8225.
Thanks for sharing this solution, Keina