@woo wrote:
Thank you.
We are running with LSF and gsub. We don't have grid orchestrator.
Any commands we can use? ps -ef cmd doesn't shows any process with connect spawner. We have multiple sasapp and for same app servers, we have obj. spawner definition defined.
A spawner is not needed in a grid. LSF replaces the spawner as the daemon that starts CONNECT servers. Run the following code:
%put rc=%sysfunc(grdsvc_enable(_ALL_,server=SASApp));
SIGNON T1;
(this assumes you have a SAS Application Server context 'SASApp' that has a logical grid server defined)
Once this runs, there should be a SAS process running on the grid in CONNECT server mode. Use the LSF 'bjobs' command from a terminal to see the job information. To make the server go away, run the following code:
SIGNOFF T1;
If you had a CONNECT spawner, the process name would be 'cntspawn' in 9.4
... View more