vote up 1 vote down star

I am writing a bash script to set up a production server. The tasks at hand include compiling software, creating users and directories, copying files over, etc.

I am wondering what other things I should do. Perhaps logging to a file? checking for a 0 exit status? What can I add to actually make this script great and not just "it works" ?

flag

75% accept rate

2 Answers

vote up 3 vote down check

Maybe you should rethink how you deploy your software to the production server:

  1. Compiling software should be done in your development environment, not on the production server. There's no need to install compilers on production servers. And there are a lot of reasons not to do it (mainly security reasons).

  2. Use a package management system to deploy your software. If you're on linux use deb, rpm, or whatever package manger is used by your distribution. This will give you full control on what version is installed, and also provide dependency features.

  3. The package that installs your software should bring with it all the files your software needs (unless these files can be provided by other packages), and also set up users, directories, permissions, and anything else your software needs.

  4. Basically you can write your bash script in the post install and post remove section of the package.

  5. Make sure to test that once installed, the package brings and creates everything needed to run the program, and that uninstalling the package, removes all the files, and undoes what the postinstall script did.

  6. Make sure upgrading the package from version X to X+1 works as expected.

Regarding the script itself. You should of course check for exit status of the commands you run. You can use a Wrapper script so that you don't have to repeat the exit code checking, and logging for each command.

Good luck!

link|flag
The server is running Red Hat (not my choice as distros like this tend to have the kitchen sink included). The thought occured to me to create custom RPMs, which I did, but my boss feels its better to compile postgresql, apache, etc for each new deployment server (despite same hardware) – theman_on_vista Dec 31 '08 at 15:01
thanks for the insight (and confirming what i thought all along). Using RPMs is not only natural for Red Hat, but it would make updating our personal software much more simple. – theman_on_vista Dec 31 '08 at 15:03
vote up 0 vote down

At my work, we have shell scripts to automate pretty much everything when it comes to building a server. The install of the OS is fully automated based on some profiles and whatnots. Patching, adding users, etc, is all scripted to make life easier.

However when we need to deploy an enterprise application, these servers are "application servers" mind you, that is a totally different process. We deal with a totally different set of admins, middleware guys. We provide them binaries that were promoted through from dev, to qa, and then to prod.

Its perfectly normal to automate the setup of the box but you don't want to be "building" applications on a production box. If for anyreason the performance hit any live application would see when the box goes about a big nasty compile process. :D

link|flag

Your Answer

Get an OpenID
or

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