Page 1 of 1

Help needed to stop the Job

Posted: Thu Nov 18, 2004 6:52 pm
by Sairam
Hi

I have wriiten a cntrl (server ) job which calls a sequncer and after the Failure or success of the sequencer ,I call DSDEtach JOb Function ,but accidentally it is in the loop and the cntrl job is not stopping .
I would greatly appreciate if there are any ways to stop the cntrl (server ) job .

Any suggestions are appreciated .

Thanks

Sairam

Posted: Thu Nov 18, 2004 7:31 pm
by kduke
You may need to kill -9 PID. Normally you can just kill PID but in your case force the kill command.

Posted: Thu Nov 18, 2004 7:45 pm
by ailuro
How about using:

  Director > Job > Cleanup Resources
    :: Release All, and
    :: Logout

and then Clear Status File and/or recompile the job...

Posted: Mon Nov 22, 2004 3:07 pm
by mouthou
Just to add a note to the reply. Inorder to use the command kill -9 <pid>, you have to be logged in as the owner of that process getting killed :!: .

Thanks.