3

I would like to have a (bash) script to rename a file on multiple remote linux servers any idea how to do it? thanks.

edotan
  • 1,876
  • 13
  • 39
  • 57

3 Answers3

7

You can use ssh for that. For example:

for server in server1 server2 server3; do ssh $server mv oldfilename newfilename; done

You may want to have a list of servers stored in a environment variable:

export MYLISTOFSERVERS="server1
server2
server3
...
servern
"

and a function (for example) in your bashrc (or a dedicated script):

runforeachserver () {
for server in $MYLISTOFSERVERS; do
ssh $server "$@"
done
}

so you can call it whenever you want to do tasks for each of your servers. For example rename files as you wanted:

runforeachserver mv oldfilename newfilename

or (just to show you how to scape the command to pass through ssh):

runforeachserver date -d \"month ago\" +\"%Y-%m-%d\"
2011-04-04
2011-04-04
2011-04-04
2011-04-04
2011-04-04
2011-04-04

Obviously this can be as robust as you wish (enabling arrays of servername/sshport), syntax checks, etc...

hmontoliu
  • 3,753
  • 3
  • 23
  • 24
0

While not a bash script, you might also like to try ClusterSSH. It will help you to execute the same command on multiple servers at the same time.

AlexTsr
  • 606
  • 3
  • 5
0

You can use a one-liner perl:

perl -lne 'system("/usr/bin/ssh -l username $_ command")' computers

where computers is a file with one IP-adress on each line and command is the actuall command you want to run. (modify path to your ssh binary as needed, for security reasons use an absolute path)

You should setup SSH-keys aswell. You can use ssh-copy-id for that so you wont need to enter a password everytime you run the script, for each server.

ssh-keygen
ssh-copy-id username@hostname
artifex
  • 1,634
  • 1
  • 17
  • 22