Drools6.4动态加加载规则之(三)kie-wb与kie-server的集群应用

1.说明

本例讲解的是使用6.4.0.Final版本kie-wb(drools workbench)与 kie-server(KIE Execution Server)的集群搭建,;使用wildfly服务器

2.下载

drools workbench : https://download.jboss.org/drools/release/6.4.0.Final/kie-drools-wb-distribution-wars-6.4.0.Final-wildfly8.war
KIE Execution Server: https://download.jboss.org/drools/release/6.4.0.Final/kie-server-distribution-6.4.0.Final.zip

3.集群架构图

Drools6.4动态加加载规则之(三)kie-wb与kie-server的集群应用_第1张图片

 

4.机器列表

192.168.1.91(kie-web集群)
192.168.1.92(kie-web集群)
192.168.1.93(kie-server集群)
192.168.1.94(kie-server集群)
192.168.1.95 (zk+helix)

5.kie-wb集群配置

helix客户端安装(两台均需安装)

http://mirrors.tuna.tsinghua.edu.cn/apache/helix/0.6.5/binaries/helix-core-0.6.5-pkg.tar
安装

配置
两台机器分别新增helix节点:
./helix-admin.sh --zkSvr 192.168.1.95:2181 --addNode kie-cluster nodeOne:12345
./helix-admin.sh --zkSvr 192.168.1.95:2181 --addNode kie-cluster nodeTwo:12346

 

wildfly配置
/usr/local/wildfly/domain/configuration/domain.xml(仅需domain所在机器需要配置)
full环境增加认证安全认证

  
    
         
             
         
         
             
         
    
 

 

 

/usr/local/wildfly/domain/configuration/host.xml(两台均需要配置)


      	
      		
      		
      		
      		
      		
     
    
    
        
        
        	
          		
          		
          		
          		
          		
          		
          		
         		
         		
         		
         		
        		
       			
       			
       			
      		
      
    

 

 
   

6.kie-server集群

maven扫描配置:/root/.m2/下新增settings.xml文件 (两台均线配置)
 
     /root/.m2/repository
    
    
    
    
      kie-workbench
      admin
      admin
      
        httpclient
        
          
            true
          
        
      
    
    
    
    
    
    
      kie
      
      
      
        
          kie-workbench
          JBoss BRMS Guvnor M2 Repository
          http://192.168.1.91:8080/kie-wb/maven2/
          
     	     true
    	  
	  default
          
            true
            always
          
          
            true
            always
          
        
      
      
        
          kie-workbench
          JBoss BRMS Guvnor M2 Repository
          http://192.168.1.91:8080/kie-wb/maven2/
          default
          
            true
            always
          
          
            true
            always
          
        
      
    
    
    
    kie
    
    

wildfly配置
/usr/local/wildfly/domain/configuration/host.xml(两台均需要配置)
 
      	
          
          
            
                
       
 	
    
        
			
			
      			
      			
      			
      			
      			
      			
      			
	     		
                
    			
			
    	
    

7.zk以及helix配置

zk

下载

http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.4.9/zookeeper-3.4.9.tar.gz
安装

配置
将zoo_sample.cfg重名为zoo.cof
其他为默认配置
启动
./zkServer.sh start

helix

下载
http://mirrors.tuna.tsinghua.edu.cn/apache/helix/0.6.5/binaries/helix-core-0.6.5-pkg.tar
安装

配置
ps: 以下操作需要先启动zk

cd $HELIX_HOME/bin
#新增cluster
./helix-admin.sh --zkSvr localhost:2181 --addCluster kie-cluster
#新增共享资源库
./helix-admin.sh --zkSvr localhost:2181 --addCluster kie-cluster
#新增两个节点 ps:注意此步骤在kie-wb集群的每台机器上操作
./helix-admin.sh --zkSvr 192.168.1.95:2181 --addNode kie-cluster nodeOne:12345
./helix-admin.sh --zkSvr 192.168.1.95:2181 --addNode kie-cluster nodeTwo:12346
#初始化集群
./helix-admin.sh --zkSvr localhost:2181 --rebalance kie-cluster vfs-repo 2
 

8.集群启动

1.启动zk
./zkServer.sh start
2.启动helix controller
./run-helix-controller.sh --zkSvr localhost:2181 --cluster kie-cluster 2>&1 > /tmp/controller.log &
3.启动kie-web集群
ps:重新服务器过后,container自动重启,但是自动扫描会失效需要重新配置
4.启动kie-server集群
 

9.测试与应用

参考我的文章: http://blog.csdn.net/caicongyang/article/details/52369143
 
 
其他文章
Drools6.4动态加载规则之(一)模板的简单应用 :http://blog.csdn.net/caicongyang/article/details/52702628
Drools6.4动态加载规则之(二)动态创建kjar:http://blog.csdn.net/caicongyang/article/details/52936282
 
    
 
    

更多精彩内容请继续关注我的博客http://blog.csdn.NET/caicongyang

记录与分享,你我共成长 -from caicongyang

 

 

你可能感兴趣的:(drools)