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

Could you please suggest me how to run a shell script on remote machine?

I have ssh configured on both machine A and B. My script is on machine A which will perform a task on machine B.

share|improve this question
13  
Closed as off topic, but immensely popular. Could this be migrated to the right StackExchange? – dfrankow Aug 7 '12 at 20:30
The same question is already on serverfault: serverfault.com/questions/215756/… So there's probably no point in migrating this question. – sleske Sep 11 '12 at 15:46

closed as off topic by Anna Lear Nov 30 '11 at 4:02

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

10 Answers

If Machine A is a Windows box, you can use Plink (part of PuTTY) with the -m parameter, and it will execute the local script on the remote server.

plink root@MachineB -m local_script.sh

If Machine A is a Unix-based system, you can use:

ssh root@MachineB 'bash -s' < local_script.sh

You shouldn't have to copy the script to the remote server to run it.

share|improve this answer
1  
Perfect answer for me, I needed both solutions. – nimcap Sep 17 '11 at 18:16
is there an advantage to using the -s option? this man page leads me to believe that it will process standard input when it's done processing options, whether -s is used or not. – asia1281 Nov 18 '11 at 5:41
@asia1281 There's no advantage; I chose this technique since it seemed more explicit. It's probably safe to omit the '-s'. – Jason R. Coombs Nov 21 '11 at 5:26
1  
++++1 great :) Simple & clear – Viet May 28 '12 at 9:20
2  
For a script that requires sudo, run ssh root@MachineB 'echo "rootpass" | sudo -Sv && bash -s' < local_script.sh. – bradley.ayers Sep 20 '12 at 23:32

This is an old question, and Jason's answer works fine, but I would like to add this:

ssh user@host <<'ENDSSH'
#commands to run on remote host
ENDSSH

This can also be used with su and commands which require user input. (note the ' escaped heredoc)

Edit: Since this answer keeps getting bits of traffic, i would add even more info to this wonderful use of heredoc:

You can nest commands with this syntax, and thats the only way nesting seems to work (in a sane way)

ssh user@host <<'ENDSSH'
#commands to run on remote host
ssh user@host2 <<'END2'
# Another bunch of commands on another host
wall <<'ENDWALL'
Error: Out of cheese
ENDWALL
ftp ftp.secureftp-test.com <<'ENDFTP'
test
test
ls
ENDFTP
END2
ENDSSH

You can actually have a conversation with some services like telnet, ftp, etc. But remember that heredoc just sends the stdin as text, it doesn't wait for response between lines

share|improve this answer
1  
you can temporize a bit by adding lines such as: # $(sleep 5) – Olivier Dulac Feb 22 at 13:45

Also, don't forget to escape variables if you want to pick them up from the destination host.

This has caught me out in the past.

For example:

user@host> ssh user2@host2 "echo \$HOME"

prints out /home/user2

while

user@host> ssh user2@host2 "echo $HOME"

prints out /home/user

Another example:

user@host> ssh user2@host2 "echo hello world | awk '{print \$1}'"

prints out "hello" correctly.

share|improve this answer
However be aware of the following: ssh user2@host 'bash -s' echo $HOME /home/user2 exit – errant.info Apr 30 at 6:55
<hostA_shell_prompt>$ ssh user@hostB "ls -la"

That will prompt you for password, unless you have copied your hostA user's public key to the authorized_keys file on the home of user .ssh's directory. That will allow for passwordless authentication (if accepted as an auth method on the ssh server's configuration)

share|improve this answer
ssh is configured so it will not asking any passwd .....right ....thanks – Brian Leahy Nov 20 '08 at 12:56
2  
Voted you up. This is a valid solution. Obviously, the keys must be protected, but they can also be invalidated just like a password via the server side. – Abyss Knight Nov 21 '08 at 17:44
4  
I don't think this answers the question. The example shows how to run a remote command, but not how to execute a local script on a remote machine. – Jason R. Coombs Apr 28 '10 at 21:03
Not certain but can't you pipe your script on hostA to run on hostB using this method? – nevets1219 Apr 28 '10 at 21:13
2  
I think such a short question can be read in full without any problems – andho Apr 14 '11 at 9:12
show 5 more comments

This is an extension to YarekT's answer to combine inline remote commands with passing ENV variables from the local machine to the remote host so you can parameterize your scripts on the remote side:

ssh user@host ARG1=$ARG1 'bash -s' <<'ENDSSH'
  # commands to run on remote host
  echo $ARG1
ENDSSH

I found this exceptionally helpful by keeping it all in one script so it's very readable and maintainable.

share|improve this answer

Assuming you mean you want to do this automatically from a "local" machine, without manually logging into the "remote" machine, you should look into a TCL extension known as Expect, it is designed precisely for this sort of situation. It's home page below looks kind of crappy but don't let that dissuade you; I've also provided a link to a script for logging-in/interacting via SSH.

http://expect.nist.gov/

http://bash.cyberciti.biz/security/expect-ssh-login-script/

share|improve this answer
i have tried it before... posting this issue on stackoverflow but not geting proper result.....thanks – Kev Nov 20 '08 at 12:53

I've started using Fabric for more sophisticated operations. Fabric requires Python and a couple of other dependencies, but only on the client machine. The server need only be a ssh server. I find this tool to be much more powerful than shell scripts handed off to SSH, and well worth the trouble of getting set up (particularly if you enjoy programming in Python). Fabric handles running scripts on multiple hosts (or hosts of certain roles), helps facilitate idempotent operations (such as adding a line to a config script, but not if it's already there), and allows construction of more complex logic (such as the Python language can provide).

share|improve this answer

If your script is in Machine A, you can't run that on Machine B without copying it over. First, copy the script over to Machine B using scp

[user@machineA]$ scp /path/to/script user@machineB:/home/user/path

Then, just run the script

[user@machineA]$ ssh user@machineB "/home/user/path/script"

This will work if you have given executable permission to the script.

share|improve this answer
hi i applied recommended suggession but it give me following error [oracle@node1 ~]$ ssh oracle@node2:./home/oracle/au/fs/conn.sh ssh: node2:./home/oracle/au/fs/conn.sh: Name or service not known [oracle@node1 ~]$ – Kev Nov 20 '08 at 12:47
'ssh oracle@node2:./home/oracle/au/fs/conn.sh'? Wrong command line, the command name should be separated from the user@host part with a space, not a colon. – bortzmeyer Dec 15 '08 at 13:37
I'm downvoting this because it's primary claim that it can't be run without copying it over is incorrect. – Jason R. Coombs Apr 28 '10 at 21:02
Jason: No problem :) – Baishampayan Ghose May 4 '10 at 14:19

Capistrano provides a nice scripting system that automates scripting on one or more servers. It's very handy if you routinely want to run a script on a remote server or servers without the hassle of manually logging in over and over.

share|improve this answer

I am tryin to run a remote script something like ssh user@remote sh script.unx

script.unx on remote machine, runs several commands, but it says

commando not found, it looks like remote script doesnt read enviroment variables

any idea?

try running ssh user@remote sh ./script.unx

share|improve this answer
2  
This only works if the script is in the default (home) directory on the remote. I think the question is how to run a script stored locally on the remote. – Simeon Fitch Jul 20 '10 at 12:35

protected by BЈовић Dec 13 '12 at 14:18

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.