多个Tomcat同步session

Tomcat0的server.xml





 
 
 
 
 
 
 
 


 
 
   
                  type="org.apache.catalina.UserDatabase"
              description="User database that can be updated and saved"
              factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
              pathname="conf/tomcat-users.xml" />
 



 
 


   
   




   
                   connectionTimeout="20000"
               redirectPort="8443" />
   
   
   
   
   
   


   
   




   


   
   


                channelSendOptions="8">  
  
                           expireSessionsOnShutdown="false"  
                  notifyListenersOnReplication="true"/>  
  
           
                                  address="228.0.0.4"  
                       port="45564"  
                       frequency="500"  
                       dropTime="3000"/>  
                                address="localhost"  
                     port="4000"  
                     autoBind="100"  
                     selectorTimeout="5000"  
                     maxThreads="6"/>  
  
             
             
           
 
             
      
         
 
  
                         filter=""/>  
           
  
                            tempDir="/tmp/war-temp/"  
                   deployDir="/tmp/war-deploy/"  
                   watchDir="/tmp/war-listen/"  
                   watchEnabled="false"/>  
  
           
       
 


     


     
     
       
                       resourceName="UserDatabase"/>
     



                  unpackWARs="true" autoDeploy="true">


       
       


       
                       prefix="localhost_access_log" suffix=".txt"
               pattern="%h %l %u %t "%r" %s %b" />


     

   

 


Tomcat1的server.xml




 
 
 
 
 
 
 
 


 
 
   
                  type="org.apache.catalina.UserDatabase"
              description="User database that can be updated and saved"
              factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
              pathname="conf/tomcat-users.xml" />
 



 
 


   
   




   
                   connectionTimeout="20000"
               redirectPort="8443" />
   
   
   
   
   
   


   
   




   


   
   


                channelSendOptions="8">  
  
                           expireSessionsOnShutdown="false"  
                  notifyListenersOnReplication="true"/>  
  
           
                                  address="228.0.0.4"  
                       port="45564"  
                       frequency="500"  
                       dropTime="3000"/>  
                                address="localhost"  
                     port="4001"  
                     autoBind="100"  
                     selectorTimeout="5000"  
                     maxThreads="6"/>  
  
             
             
           
 
              
         
 
  
                         filter=""/>  
           
  
                            tempDir="/tmp/war-temp/"  
                   deployDir="/tmp/war-deploy/"  
                   watchDir="/tmp/war-listen/"  
                   watchEnabled="false"/>   
           
       
 

     


     
     
       
                       resourceName="UserDatabase"/>
     



                  unpackWARs="true" autoDeploy="true">


       
       


       
                       prefix="localhost_access_log" suffix=".txt"
               pattern="%h %l %u %t "%r" %s %b" />


     

   

 


谨记:然后在某个项目的WEB-INF中的web.xml里添加就行了

你可能感兴趣的:(Java,linux)