On Tue, Sep 21, 2004 at 04:59:42PM +0000, Didier McGillis wrote: : to setup up three instances of the same site. Here is the reason. I have : three developers who are coming in. I have one set of code, rather then : they share it, and play that way I would rather them have their own spots : to play. : [snip] : so HTML/images is in /usrl/local/apache2/guy1, guy2, guy3 .... : jsp/java/servlets is in /usr/local/tomcat/webapps/guy1, guy2, guy3 .... : : http://server/guy1 : http://server/guy1 : http://server/guy3
Check out the Tomcat docs on CATALINA_BASE vs CATALINA_HOME, which lets you provide each developer with their own Tomcat instance (separate JVMs). Find/create custom scripts for each developer to start/stop their own instance. The rest is, well, up to the developers. They should be able to check out the entire site from source code control (or however it's stored). They would work on just their piece, and only check-in code related to their piece; but to be effective, they should be able to run/see the full site within their instance. Taking this a step farther, you could create another instance for QA, one for load-tests, etc. -QM -- software -- http://www.brandxdev.net tech news -- http://www.RoarNetworX.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
