vote up 0 vote down star

i want to run some command on several machine using ssh. I know it can be done by just using the command "ssh user@hostname command". However, the command i want to run print some string on the console. Is there any way that send all the strings back to the console that i'm on?

flag

62% accept rate

5 Answers

vote up 3 vote down check

You could run the commands in a screen:

screen -S test
ssh user@hostname command1
ssh user@hostname2 command2

You can then detach (Ctrl-D) from the screen, let it run for however long it will run, then re-attach (screen -r test) to the screen and see all of the output. This assumes that you won't have a ton of output from the commands, however. Here's a link to a tutorial on screen.

link|flag
don't you first want to connect to the remote host, then start a screen session there, /then/ executing the command? – MSpreij Jun 23 at 23:36
I don't think so. As I understand the question, you want all of the output on one console, so that's why you start the screen and then run the commands. – Dan Wolchonok Jun 23 at 23:40
What if i do have a tons of output on one console. How big is the buffer? – CKeven Jun 23 at 23:52
If there is tons of output on the console, I would write the output to a standard location on each of the machines, and then copy the files from each host to a central location to look at the logs. – Dan Wolchonok Jun 24 at 0:03
1  
The number of lines of output stored is set up in your ~/.screenrc file in a line such as: " defscrollback 15000 " to store 15000 lines per window. – Mark Rushakoff Jun 24 at 0:09
show 1 more comment
vote up 2 vote down
 ssh user@hostname command

Does just that. if 'command' outputs something, it'll show on the terminal you ran ssh from. Try e.g. ssh user@hostname ls -l

But as others have said, GNU screen is invaluable for this type of work.

link|flag
vote up 1 vote down

You probably want to use Gnu Screen for this. You can start a process in a "virtual" terminal, "detach" the terminal and log out for however long you want... Then you can ssh back in and re-attach the terminal to see the console output.

link|flag
vote up 0 vote down

Why don't you send you an email back? Or use a log file, and scp it to your current computer? otherwise, I don't know!

link|flag
the program i want to run remotely may take several day. I just want to be able to monitor the live progress. – CKeven Jun 23 at 23:26
vote up 0 vote down

Also have a look at nohup, for example:

ssh user@domain.com nohup script_that_outputs_strings.py > the_strings.txt

Then if you want to go back and monitor the progress, you could check back and tail the file or scp the output back to your local machine.

link|flag

Your Answer

Get an OpenID
or

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