The power of the shell script

Source: Internet
Author: User

I used to deploy our application into 200 centos machine, and these machines are far from my current office site. The deployment is simple.

Firstly sync the code and build in the head Linux (one of the machine in the Linux farm). Then copy the build to the other 199 machines.

Finally start the application on all the machines.

Yes, it is very simple. But if you deploy it in hand, it will be crazy. It's the place to show the power of the shell script.

1. Sync code and build in one "build. Sh" scipt.

2. Copy the build to other machine in scp-range.sh script, which use the SCP command.

#! /Bin/sh

Build = $1

Destination = $2

Iplists = $3

For host in $ (cat $ iplists)

Do

SCP $1 Host: $ destination

Done

Wow, so cool!

One way, you can see, is that it without typing password. I has two way to solve it. one is use the SSH authorized using the key-pair. the other way is to use the specific CT script.

Note: All the machine have the same password.

3. Start the application in the remote.

#! /Bin/sh

Cmd = $1

Iplists = $3

For host in $ (cat $ iplists)

Do

Ssh-t-F host "$ cmd"

Done

Wow, so cool. When I run these script, it give my sharp surprise.

Of course, all the 3 steps can be automated. You can just type one command to execute whole the thing.

If I want to automate these in window OS, OMG, it will be impossible for me.

This is the way I see the power of Linux.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.