Shutting down Turbofloat Server on Linux (use SIGTERM)Solved

In order to send licence changes to users immediately, we need to get them to shut down TFS, activate it again and then restart it.

Is there a way to shut down TFS when it is running as a Linux daemon, other than killing the process?

>> "Is there a way to shut down TFS when it is running as a Linux daemon, other than killing the process?"

Yes, on Linux SIGTERM is the way to cleanly close a process (TurboFloat Server handles that signal on Linux and cleanly shuts down).

So...

kill -SIGTERM [process_id_here]

Thanks Wyatt