Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How can I deploy from bamboo to remote server using rsync?

Luis Pizarro February 24, 2015

When we do deploys to remote servers Bamboo seems to only be able to ant scp the WAR files which takes a very very long time. This could be done manually with rsync but defeats the purpose of using Bamboo. Is there a way or hidden plugin (I've looked) to do this using rsync or some other way of copying the files faster?

Can Maven help somehow for this? We deploy to Glassfish servers

4 answers

1 vote
Volodymyr Krupach
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 24, 2015

I use command native scp via script tasks. For sure you need to run under linux. Please take a look: https://confluence.atlassian.com/display/BAMBOO/Script

Luis Pizarro February 25, 2015

thanks we do too but our application is about 1G and copying this over the cable is dramatically slow. I would prefer rsync or some other way that would make the copying faster.

0 votes
Alan Snow July 15, 2015

@GEETHA PRABHAKARAN
Is this still possible if you do not have Bamboo installed in house but running from the Atlassian website? Because I'm not aware of a way to SSH into the bamboo server so I can generate the keys. Im currently stuck on deployment with rsync because I have no way to authenticate into the remote server from running the script on the bamboo machine.

0 votes
GEETHAP February 27, 2015

Yes rsync is better than scp.The data transfer is faster in rsync than scp.Please find the attached screen shots that was broken

 

0 votes
GEETHAP February 27, 2015

To deploy using rsync command from bamboo to the remote server

Step 1 : Create ssh keys in local server 

 

ssh-keygen

 

Step 2 : Copy the public key to the remote server 

 

ssh-copy-id -i ~/.ssh/id_rsa.pub geetha.prabhakaran@192.168.4.121

 

Step 3 :Goto the deployment project -> Edit environment -> Add task -> Script task

Add the following in the script body

 

#!/bin/bash
rsync -avh --delete -e "ssh -i $HOME/.ssh/id_rsa" otp-analyst-client geetha.prabhakaran@192.168.4.121:/Network/Servers/ldap-nj.addteq.com/Users/geetha.prabhakaran/Desktop

 

Step 4: If the deployment is success,you will get the log as below and can validate by traversing to the corresponding path


Luis Pizarro February 27, 2015

Hi @GEETHA PRABHAKARAN thanks for the comments. The images that you attached are broken for me here. Also, I want to give you a small overview of our set up. We have Bamboo installed in-house. Our builder. We also have remote agents (sitting in clients site) which get a copy of built project (war files) from Bamboo sitting in-house and streams it to the application server. Our problem is when the remote agent gets the copy from Bamboo. It is currently an ant task using scp which is our bottleneck with ~1Gb worth of data transfer. Would your approach help us over come this problem and let us use rsync? Thank you very much in advance. :)

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events