Application Deployment Script

Hi,

I need to develop a script which will deploy my web application binary(.war) file in the jboss application server.

I also need to take the back up of the existing binary file and rename the same with current date and then deploy the new binary from my specified location.

The same process will be done across 13 application server with 2 instance of jboss running on each server i.e. 26 deployments.

Thanks in advance..!!

Regards,
Siddhesh.K

Have a look into a shell scripting tutorial.
To connect and take backup or place stuff you might want to use scp ie. set up public key authentication (without password) with ssh. There are plenty of threads about it in this forum and also on the web.
To work this on your 13 boxes you can use a loop for example ie. processing a list of host names.

If you get stuck at a particular step you can ask here again.