Author: kfujino Date: Tue Aug 25 06:50:17 2015 New Revision: 1697578 URL: http://svn.apache.org/r1697578 Log: Correct documentation for cluster-howto.
Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml tomcat/tc7.0.x/trunk/webapps/docs/cluster-howto.xml Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1697578&r1=1697577&r2=1697578&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Tue Aug 25 06:50:17 2015 @@ -58,7 +58,14 @@ issues do not "pop up" wrt. others). --> <section name="Tomcat 7.0.65 (violetagg)"> - <subsection name="jdbc-pool"> + <subsection name="Web applications"> + <changelog> + <fix> + Correct documentation for cluster-howto. (kfujino) + </fix> + </changelog> + </subsection> + <subsection name="jdbc-pool"> <changelog> <fix> Make sure the pool has been properly configured when attributes that Modified: tomcat/tc7.0.x/trunk/webapps/docs/cluster-howto.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/cluster-howto.xml?rev=1697578&r1=1697577&r2=1697578&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/cluster-howto.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/cluster-howto.xml Tue Aug 25 06:50:17 2015 @@ -63,7 +63,7 @@ <li>Multicast port is 45564 (the port and the address together determine cluster membership.</li> <li>The IP broadcasted is <code>java.net.InetAddress.getLocalHost().getHostAddress()</code> (make sure you don't broadcast 127.0.0.1, this is a common error)</li> <li>The TCP port listening for replication messages is the first available server socket in range <code>4000-4100</code></li> - <li>Two listeners are configured <code>ClusterSessionListener</code></li> + <li>Listener is configured <code>ClusterSessionListener</code></li> <li>Two interceptors are configured <code>TcpFailureDetector</code> and <code>MessageDispatch15Interceptor</code></li> </ol> <p> @@ -120,7 +120,7 @@ should be completed:</p> <li>All your session attributes must implement <code>java.io.Serializable</code></li> <li>Uncomment the <code>Cluster</code> element in server.xml</li> <li>If you have defined custom cluster valves, make sure you have the <code>ReplicationValve</code> defined as well under the Cluster element in server.xml</li> - <li>If your Tomcat instances are running on the same machine, make sure the <code>tcpListenPort</code> + <li>If your Tomcat instances are running on the same machine, make sure the <code>Receiver.port</code> attribute is unique for each instance, in most cases Tomcat is smart enough to resolve this on it's own by autodetecting available ports in the range 4000-4100</li> <li>Make sure your <code>web.xml</code> has the <code><distributable/></code> element</li> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org