I have apache2.0 as front end web server, using mod_jk and tomcat 6.0.16 serve Java web applications. Now, I have couple PHP web applications and one Java Web application. The Java web application can be accessed by url www.domain1.com, workers.properties has something like this:
workers.tomcat_home= /usr/local/apache-tomcat-6.0.16 workers.java_home=/usr/lib/jdk1.6.0_04 ps=/ #List workers worker.list=worker001 #Define worker001 worker.worker001.port=8009 worker.worker001.host=localhost worker.worker001.type=ajp13 worker.worker001.lbfactor=1 I want to install codebeamer (a java webapplication) to my server, codebeamer use a different version of tomcat as the one I'm using. I have to use its own tomcat since they customized it. I changed its port to 8081, shutdown port to 8006 which are different from my current tomcat server (8080 and 8005). My questions is, is it possible, I add another worker in the same workers.properties file, use different port number say 8010 and integrates my current Apache web server with codebeamer's tomcat, so I can access it by www.domain1.com/codebeamer? If possible what I should do with this line in workers.properties: workers.tomcat_home= /usr/local/apache-tomcat-6.0.16 Thanks for any suggestions in advance. Jiansen