Re: Master slave problem

2012-06-27 Thread Sami Tikka
It probably makes sense to run Jenkins in a separate servlet container and not inside the same container you use for your testing. Like has been pointed out already, you do not even need tomcat for running Jenkins because Jenkins can be run with just: java -jar jenkins.war -- Sami Varghese Ren

Re: Master slave problem

2012-06-27 Thread Les Mikesell
On Wed, Jun 27, 2012 at 7:34 AM, Varghese Renny wrote: > i wil explain it.. > i have Openbravo application(web) and jenkins running on same tomcat. > While i am doing build job , it will access postgres database..that time > build will fail due to session on hold. > This occur because application

Re: Master slave problem

2012-06-27 Thread Varghese Renny
i wil explain it.. i have Openbravo application(web) and jenkins running on same tomcat. While i am doing build job , it will access postgres database..that time build will fail due to session on hold. This occur because application internally accessing database..eventually my build get failed. So

RE: Master slave problem

2012-06-27 Thread Mandeville, Rob
: jenkinsci-users@googlegroups.com Subject: Re: Master slave problem Some body please tell about this whether i can use master and slave on same machine?. when i try to run my application and jenkins on same tomcat..database aceess gets locked. So it's affects my build process..so i want t

Re: Master slave problem

2012-06-27 Thread Varghese Renny
Some body please tell about this whether i can use master and slave on same machine?. when i try to run my application and jenkins on same tomcat..database aceess gets locked. So it's affects my build process..so i want to put jenkin and application in differenct tomcat. for that i need any ma

Master slave problem

2012-06-27 Thread Varghese Renny
I am having one jenkins running on tomcat6. i wanted to have my web application to run on differenct tomcat6 instance. For that i need a master slave approach? How to run jenkins on one tomcat as master and application as slave on another tomcat? Please reply..