Hi,
I noticed the following: we are using Bamboo to deploy a webserver. The last step in the deployment is to start the webserver. However Bamboo is considering the deployment to be successful immediately after the server start command has been given (tomcat on linux being started with command 'catalina.sh start'). The server however is still starting up for a few minutes. This causes problems when using triggers + we have to manually check the log to see if the server has really started.
Is there a way to have Bamboo consider a deployment successful only after the server has actually fully started?
thanks and regards
Hi Pieter,
The Bamboo considers the deployment to be successful because the return code by the command "catalina.sh start" will always (unless there is some error upon executing this command for example if the shell file does not have executable permissions then it will throw an error and the return code will be 1) return 0 (which is a success).
So to achieve your requirement here, you have to script a task to
1. Execute the "catalina.sh start" command.
2. In a loop keep searching for the string such as "tomcat started" in the tomcat logs to check the startup of the tomcat.
3. Once the "tomcat started" text is grepped from the tomcat logs, exit the loop to end the script task.
_Also make sure you have a counter here so that after a certain interval of time if the script is not able to get the "tomcat started" text the process will timeout and the deployment should fail._
Something like:
sh catalina.sh start
for loop to check for the text (say 5 times) with gap of 20 seconds each (sleep 20)
if the system couldn't manage to get the string:
exit -1
else
success
Thanks!
Robhit
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.