Re: Please Validate this Question

2010-01-23 Thread Peter Crowther
2010/1/23 Karthik Nanjangude karthik.nanjang...@xius-bcgi.com: 1)       A Custom built  web application  uses Quartz  process ( Kron  job)   every  20  minutes  to DB  (JNDI based Connection pool )  to process some data on  when deployed on  single  system, 2)       The same is deployed on a

Recommendations for Automating Deployments and then dev, qa, uat, prod testing

2010-01-23 Thread Fletcher Cocquyt
Hi, this question is coming from the operations team perspective. Currently our (small 3 member) ops team is responsible for deploying java apps weekly from a set of dozens in a less than great 4am-6am window on Wednesdays. This process is not perfectly defined and slow - the developer's check

RE: question for deploystartup forROOT.war on tomcat cluster

2010-01-23 Thread Caldarale, Charles R
From: Okubo, Yasushi (TSD) [mailto:yasushi.ok...@takedasd.com] Subject: question for deploystartup forROOT.war on tomcat cluster 3. confirmed that [Catalina_home]/conf/ROOT.xml and webapps/ROOT and webapps/ROOT.war existed Two obvious problems: 1) The ROOT.xml file belongs in

Re: Recommendations for Automating Deployments and then dev, qa, uat, prod testing

2010-01-23 Thread Pierre Goupil
Hello, Maven can for sure cover all these needs. But be aware that it has a steep learning curve and that if someone uses it, everybody should do so. Depending upon your role on the project the required level of knowledge will vary, though. For an operationnal guy it may reduce to launch 2 or 3

RE: question for deploystartup forROOT.war on tomcat cluster

2010-01-23 Thread Okubo, Yasushi (TSD)
Thanks for your reply. -Original Message- From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Sent: Saturday, January 23, 2010 8:53 AM To: Tomcat Users List Subject: RE: question for deploystartup forROOT.war on tomcat cluster From: Okubo, Yasushi (TSD)

Re: question for deploystartup forROOT.war on tomcat cluster

2010-01-23 Thread Konstantin Kolinko
2010/1/23 Okubo, Yasushi (TSD) yasushi.ok...@takedasd.com: 1. What attributes are set on the Host element of your server.xml http://tomcat.apache.org/tomcat-6.0-doc/config/host.html 2. Are there any Context elements inside Host in your server.xml? Remove them, if there are any. 3. When ROOT

Re: Recommendations for Automating Deployments and then dev, qa, uat, prod testing

2010-01-23 Thread anthonyvierra
How about CI - continious integration server that builds, tests, and deploys the apps if the tests are successful? There are a few great CI servers out there. I happen to use Bamboo from atlassian. All CI use a build tool like ant or maven. CI would make your small ops team superstars. On