Author: kfujino Date: Tue Aug 25 06:49:13 2015 New Revision: 1697577 URL: http://svn.apache.org/r1697577 Log: Correct documentation for cluster-howto.
Modified: tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml tomcat/tc8.0.x/trunk/webapps/docs/cluster-howto.xml Modified: tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml?rev=1697577&r1=1697576&r2=1697577&view=diff ============================================================================== --- tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Tue Aug 25 06:49:13 2015 @@ -45,6 +45,13 @@ issues do not "pop up" wrt. others). --> <section name="Tomcat 8.0.27 (markt)" rtext="in development"> + <subsection name="Web applications"> + <changelog> + <fix> + Correct documentation for cluster-howto. (kfujino) + </fix> + </changelog> + </subsection> <subsection name="jdbc-pool"> <changelog> <fix> Modified: tomcat/tc8.0.x/trunk/webapps/docs/cluster-howto.xml URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/webapps/docs/cluster-howto.xml?rev=1697577&r1=1697576&r2=1697577&view=diff ============================================================================== --- tomcat/tc8.0.x/trunk/webapps/docs/cluster-howto.xml (original) +++ tomcat/tc8.0.x/trunk/webapps/docs/cluster-howto.xml Tue Aug 25 06:49:13 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> @@ -119,7 +119,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