When launching the gsengine from a Unix command line, logging off or exiting the shell causes the gsengine to shut down. How to prevent this from occurring?
book
Article ID: KB0094020
calendar_today
Updated On:
Products
Versions
TIBCO BusinessConnect
-
Not Applicable
-
Description
Description:
Wen starting the BC GS engine using the following command,
./gsengine &
the GS engine is starting successfully yet exiting the shell shuts down the gsengine.
Issue/Introduction
When launching the gsengine from a Unix command line, logging off or exiting the shell causes the gsengine to shut down. How to prevent this from occurring?
Resolution
Starting the GS engine as,
nohup ./gsengine > /dev/null 2>&1 &
will detach the gsengine from the Unix session and directs standard output and standard error logging to a null file.