[Dspace-tech] Tomcat cluster configuration

2007-06-27 Thread Jesus Martin
Hi, I have been configuring Tomcat and DSpace to accomplish tomcat clustering and the persistence of sessions in two machines that are running Tomcat at the same time. First, I added the line of server.xml under the Engine line: Engine defaultHost=localhost name=Catalina Cluster

Re: [Dspace-tech] Tomcat cluster configuration

2007-06-27 Thread James Rutherford
Hi, It would be great if you could add some notes to the (embarrassingly incomplete) wiki page that I started a few months ago: http://wiki.dspace.org/HOWTO_Clustering The page is mostly focussed on clustering of the database layer, so it would be good to get more detailed information about

Re: [Dspace-tech] Tomcat cluster configuration

2007-06-27 Thread Jesus Martin
Hi, I added some notes to HOWTO_Clustering in DSpace's wiki fo clustering with Tomcat. http://wiki.dspace.org/index.php//HOWTO_Clustering cheers, Jesús James Rutherford wrote: Hi, It would be great if you could add some notes to the (embarrassingly incomplete) wiki page that I started a

Re: [Dspace-tech] Tomcat cluster configuration

2007-06-27 Thread Jodi Schneider
Thanks, Jesus. Since you and James are discussing it, I'll make some comments about what's unclear to me from reading this page, as a novice: -What is the path of server.xml? -How do we modify the objects that sessions of DSpace uses? The structure of this page

Re: [Dspace-tech] Tomcat cluster configuration

2007-06-27 Thread James Rutherford
On Wed, Jun 27, 2007 at 09:10:53AM -0400, Jodi Schneider wrote: -What is the path of server.xml? -How do we modify the objects that sessions of DSpace uses? This depends on where you installed Tomcat. For me, it's here: /etc/tomcat-5.5/server.xml The structure of this page

Re: [Dspace-tech] Tomcat cluster configuration

2007-06-27 Thread Jesus Martin
Jodi, the server.xml is in the /tomcat-directory/conf/. And you have to modify one class, in concrete RequestInfo.java making this class serializable adding the following code in RequestInfo.java: java class RequestInfo implements java.io.Serializable{ After this you have to recompile the