mromy       2005/12/05 17:21:31 CET

  Modified files:
    core/src/webapp/html/startup howto_cluster.html readme.html 
  Log:
  - udpated readme
  
  Revision  Changes    Path
  1.17      +8 -0      jahia/core/src/webapp/html/startup/howto_cluster.html
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/webapp/html/startup/howto_cluster.html.diff?r1=1.16&r2=1.17&f=h
  1.25      +39 -1     jahia/core/src/webapp/html/startup/readme.html
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/webapp/html/startup/readme.html.diff?r1=1.24&r2=1.25&f=h
  
  
  
  Index: howto_cluster.html
  ===================================================================
  RCS file: /cvs/jahia/core/src/webapp/html/startup/howto_cluster.html,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- howto_cluster.html        1 Dec 2005 13:48:15 -0000       1.16
  +++ howto_cluster.html        5 Dec 2005 16:21:31 -0000       1.17
  @@ -196,6 +196,11 @@
                                                                        
simultaneously taken into account by all nodes. The following directory should 
be shared :<br/>
                                                                        <br/>
                                                                   
<i>jahia/jsp/jahia/templates/</i><br/>
  +                                                                <br/>
  +                                                                Please note 
that when creating a new virtual site, if the <i>templates</i> directory is not 
shared amongst all instances, you will
  +                                                                have to copy 
manually the deployed templates on all nodes.
  +                                                                <br/>
  +                                                                
                                                                        
<h4>Sharing Lucene search indexes</h4>                                          
                        
                                                                        You 
also need to share between all Jahia instances the directory where Lucene 
stores its indexes. This can be configured in the
                                                                        
<i>jahia\WEB-INF\etc\spring\applicationcontext-basejahiaconfig.xml</i> file 
:<br/><br/>
  @@ -206,6 +211,7 @@
                                                                        &lt;!-- 
1: index, 0: do not index ,just read ( I.E when sharing a same index directory 
in a clustered environment )--&gt;<br/>
                                                                        </i>
                                                                        <br/>
  +                                                                     
<h4>Processing servers</h4>     
                                                                        You can 
also configure if a Jahia node should process or not some operations that may 
require some heavy processing like 
                                                                        
import/export, cut/paste or linked copy. To change the beahviour, you need to 
mdoify the <i>processingServer</i> parameter 
                                                                        in 
jahia.properties :
  @@ -357,6 +363,8 @@
             driverClassName=&quot;org.postgresql.Driver&quot; 
url=&quot;jdbc:postgresql:jahia&quot;
             defaultAutoCommit=&quot;false&quot;
             maxActive=&quot;100&quot; maxIdle=&quot;30&quot; 
maxWait=&quot;10000&quot;/&gt;</pre>
  +                                                             <br/>
  +                                                             Make sure also 
that the <i>defaultAutoCommit</i> is set to <strong>false</strong>.
                          </li>
                          <li>In 
tomcat/webapps/jahia/WEB-INF/classes/treecache.xml, uncomment the following 
line : <br />
                              <br />
  
  
  
  Index: readme.html
  ===================================================================
  RCS file: /cvs/jahia/core/src/webapp/html/startup/readme.html,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- readme.html       28 Nov 2005 14:16:54 -0000      1.24
  +++ readme.html       5 Dec 2005 16:21:31 -0000       1.25
  @@ -175,7 +175,7 @@
       <div class="maincontent">
   
   <h1>Jahia 5.0 beta 3 (b3) README file</h1>
  -<p>Release date: 25/11/2005<br />
  +<p>Release date: 05/12/2005<br />
       <br />
       You have installed the Beta 3 (B3 ) release of Jahia 5.0. <br />
       <br />
  @@ -186,6 +186,7 @@
   <h2>Table of content:</h2>
   <p>
       - <a href="#1">Status</a><br />
  +    - <a href="#2">MySQL-related information</a><br />
       - <a href="#9">New Features in 5.0 b3</a><br />
       - <a href="#10">New Features in 5.0 b2</a><br />
       - <a href="#11">New Features in 5.0 b1</a><br />
  @@ -209,7 +210,44 @@
       This version only includes part of the functional and architectural 
changes we
   will implement in the final release of Jahia 5.0. </p>
   <br/>
  +<h2><a name="2" id="2"></a>MySQL-related important information</h2>
  +<p>
   
  +                              <h4>In base content storage</h4>
  +<span class="red">If you are using in base content storage with MySQL, the 
<i>max_allowed_packet</i> parameter in the <strong>my.ini</strong> will 
  +limit the maximum size of a file to be stored in the database, so make sure 
that it is configured to allow large 
  +enough files for your needs.</span><br/><br/>
  +For example :<br/>
  +<br/>
  +<i>
  +[mysqld]<br/>
  +max_allowed_packet=16777216<br/>
  +</i>
  +<br/>
  +Or:<br/>
  +<br/>
  +<i>
  +[mysqld]<br/>
  +max_allowed_packet=16M<br/>
  +</i>
  +<br/>
  +will limit the maximum size for each file stored in the database to 16 
Megabytes.
  +</span></font></p>
  +<br/><br/>
  +                              <h4>Autocommit parameter</h4>
  +                      if you are using MySQL, you must set the 
defaultAutoCommit parameter to "true" in the 
<i>tomcat/conf/Catalina/localhost/jahia.xml</i>
  +                      file :
  +                      
  +               <pre class="code">&lt;Resource name=&quot;jdbc/jetspeed&quot; 
auth=&quot;Container&quot;
  +factory=&quot;org.apache.commons.dbcp.BasicDataSourceFactory&quot;
  +type=&quot;javax.sql.DataSource&quot; username=&quot;jahia&quot; 
password=&quot;jahia&quot;
  +driverClassName=&quot;com.mysql.jdbc.Driver&quot; 
url=&quot;jdbc:mysql://localhost/jahia&quot;
  +<span class="red">defaultAutoCommit=&quot;true&quot;</span>
  +maxActive=&quot;100&quot; maxIdle=&quot;30&quot; 
maxWait=&quot;10000&quot;/&gt;</pre> 
  +                      <br/>
  +
  +</p>
  +<br/>
   
   <h2><a name="10" id="9"></a>New features in 5.0 Beta 3</h2>
   <b>Clustering and transactional<br />
  

Reply via email to