vote up 0 vote down star

I am trying to launch in the background a job on a remote machine and get its PID so that I can kill it later on. What I have come up with so far is the following:

#!/bin/bash

IP=xxx.xxx.xxx.xx
REMOTE_EXEC="ssh $IP -l root"

# The following does NOT work, I am trying to get the PID of the remote job
PID=`$REMOTE_EXEC 'vmstat 1 1000 > vmstat.log & ; echo $!'`

# Launch apache benchmark
ab -n 10 http://$IP/

$REMOTE_EXEC "kill $PID"

Unfortunately it does not work. I am getting a

bash: syntax error near unexpected token `;'

but I don't know what the right syntax would be.

flag

Simply: vmstat 1 1000 > vmstat.log & ; echo $! doesn't even locally. Take a look at it. – GrzegorzOledzki Jun 25 at 11:11
Yes I know. So I either need a fix for 'vmstat 1 1000 > vmstat.log & ; echo $!' or I need to get the PID of the remote job through some other mechanism. – davitenio Jun 25 at 11:16

2 Answers

vote up 2 vote down check

You got the error, because you ';' is redundant, try 'vmstat 1 1000 > vmstat.log & echo $!'

But I am not sure it gonna work, because after you logout, the process will receive SIGHUP. Look at nohup(1).

link|flag
It does work, even without using nohup. Thanks! – davitenio Jun 25 at 11:42
Yeah, you are right... May be, it happens, because in this case ssh does not "login" you (from ssh(1): "If command is specified, it is executed on the remote host instead of a login shell."). – dmitri Jun 25 at 12:06
vote up 1 vote down

Try surrounding the backgrounded command in curly braces:

PID=`$REMOTE_EXEC '{ vmstat 1 1000 > vmstat.log & }; echo $!'`
link|flag

Your Answer

Get an OpenID
or

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