I'm running a number of ssh commands in a background. When the triggered-via-ssh command finishes to run, the appropriate background ssh process doesn't get terminated and its ps -l output shows 'finish' for WCHAN and T for 'state'. So why the triggering process is not terminated and what does it mean 'finish' value for WCHAN?

Thanks a lot

link|improve this question

56% accept rate
Belongs on superuser.com? – wuub Jul 19 '09 at 16:13
Please provide the full ssh command line. – Inshallah Jul 19 '09 at 17:41
feedback

1 Answer

up vote 1 down vote accepted

The state "T" means that the process was suspended. Since you said you ran it in the background, this may be due to reading tty input (or writing tty output if stty tostop is set). If the program does not require any input, use the ssh -n option to avoid this.

link|improve this answer
I guess it's it - I ran the ssh command without -n flag. Thanks a lot. – victorz Jul 20 '09 at 9:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.