Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently trying to ssh into a remote machine and run a script, then leave the node with the script running. Below is my script. However, when it runs, the script is successfully run on the machine but ssh session hangs. What's the problem? Thanks ahead.

  ssh -x $username@$node 'rm -rf statuslist
                        mkdir statuslist
                        chmod u+x ~/monitor/concat.sh
                        chmod u+x ~/monitor/script.sh
                        nohup ./monitor/concat.sh &
                        exit;'
share|improve this question

3 Answers

up vote 9 down vote accepted

There are some situations when you want to execute/start some scripts on a remote machine/server (which will terminate automatically) and disconnect from the server.

eg: A script running on a box which when executed

  1. takes a model and copies it to a custer (remote server)
  2. creates a script for running a simulation with the wodel and push it to server
  3. starts the script on the server and disconnect
  4. The duty of the script thus started is to run the simulation in the server and once completed (will take days to complete) copy the results back to client.

I would use the following command:

ssh remoteserver 'nohup /path/to/script `</dev/null` >nohup.out 2>&1 &'

@CKeven, you may put all those commands on one script, push it to the remote server and initiate it as follows:

echo '#!/bin/bash  
rm -rf statuslist  
mkdir statuslist  
chmod u+x ~/monitor/concat.sh  
chmod u+x ~/monitor/script.sh  
nohup ./monitor/concat.sh &  
' > script.sh

chmod u+x script.sh

rsync -azvp script.sh remotehost:/tmp

ssh remoteshot '/tmp/script.sh `</dev/null` >nohup.out 2>&1 &'

Hope this works ;-)

share|improve this answer
What if the command you are running requires input from a file (such as a large db import, e.g. mysql < dump.sql)? How do you accomplish the </dev/null if you need to redirect a file there instead? – Carl Youngblood Oct 17 '12 at 21:02

What do you think about using screen for this? You could run screen via ssh to start the command (concat.sh) and then you'd be able to return to the screen session if you wanted to monitor it (could be handy, depending on what concat does).

To be more specific, try this: ssh -t $username@$node screen -dm -S testing ./monitor/concat.sh

You should find that the prompt returns immediately, and that concat.sh is running on the remote machine. I'll explain some of the options:

  • ssh -t makes a TTY. screen needs this.
  • screen -dm makes it start in "detached" mode. This is like "background" for your purposes.
  • -S testing gives your screen session a name. It is optional but recommended.

Now, once you've done this, you can go to the remote machine and run this: screen -r testing

This will attach you to the screen session which contains your program. From there you can control it, kill it, see its output, and so on. Ctrl-A, then d will detach you from the screen session. screen -ls will list all running sessions.

share|improve this answer
do you mind telling me explicitly how to do this? – Progress Programmer Oct 27 '09 at 1:14
2  
@John Zwinck, did this definitely work for you? The following command does not work for me: ssh -t HOST "screen -dm -S sleep sleep 10". It simply says "Connection to HOST closed" and when I login to the server there are no detached screens. – richardkmiller Jan 8 '12 at 1:11
@richardkmiller: When I tried it just now I got the same (bad) result you did. I changed the -t option to ssh to be -f instead, so that it backgrounds the command (and does not allocate a TTY), and then it worked. I suspect something changed in the intervening 2+ years of Linux since I wrote this answer...try ssh -f HOST "screen -dm -S sleep sleep 10" and you may find it works now. – John Zwinck Jan 12 '12 at 4:09
@JohnZwinck: Awesome, that worked perfectly. Thanks a lot for the reply. – richardkmiller Jan 15 '12 at 3:03

It could be the standard input stream. Try ssh -n ... or ssh -f ....

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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