如何使用非Apache Web服务器为Tomcat群集配置Windows服务器以实现负载平衡

时间:2016-04-01 14:25:29

标签: tomcat windows-server-2008 windows-server-2012 windows-clustering

我有四台Windows服务器(2012 R2标准版)和Tomcat(8.0.32版)。服务器前端有Kemp LoadMaster,用于负载平衡。目前,负载均衡器和四个Web服务器正常工作,但没有群集。

我希望使用这四个Web服务器来构建群集。我不得不这样说。我用Google搜索并搜索了大量关于使用Unix或Apache Web服务器作为前端负载平衡的教程。我无法找到单个链接,其中包含有关如何为不使用Apache Web服务器作为前端负载平衡的Tomcat群集配置一些Windows服务器的分步说明。

根据Apache doc(https://tomcat.apache.org/tomcat-8.0-doc/cluster-howto.html),我将这个添加到server.xml到每个Tomcat,但是它没有工作。

    <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"
             channelSendOptions="8">

      <Manager className="org.apache.catalina.ha.session.DeltaManager"
               expireSessionsOnShutdown="false"
               notifyListenersOnReplication="true"/>

      <Channel className="org.apache.catalina.tribes.group.GroupChannel">
        <Membership className="org.apache.catalina.tribes.membership.McastService"
                    address="228.0.0.4"
                    port="45564"
                    frequency="500"
                    dropTime="3000"/>
        <Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"
                  address="auto"
                  port="4000"
                  autoBind="100"
                  selectorTimeout="5000"
                  maxThreads="6"/>

        <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">
          <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"/>
        </Sender>
        <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/>
        <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor"/>
      </Channel>

      <Valve className="org.apache.catalina.ha.tcp.ReplicationValve"
             filter=""/>
      <Valve className="org.apache.catalina.ha.session.JvmRouteBinderValve"/>

      <Deployer className="org.apache.catalina.ha.deploy.FarmWarDeployer"
                tempDir="/tmp/war-temp/"
                deployDir="/tmp/war-deploy/"
                watchDir="/tmp/war-listen/"
                watchEnabled="false"/>

      <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/>
    </Cluster>

我希望知道在这四个Windows Web服务器(或者也可能是负载均衡器?)上需要做些什么才能使聚类发生。

非常感谢任何指针或输入。我真心的。谢谢。

0 个答案:

没有答案