Apache httpd配置与集群jboss eap 6.4独立环境

时间:2015-08-28 07:46:48

标签: apache httpd.conf mod-jk jboss-eap-6

我正在使用JBoss EAP 6.4.0

我在同一台机器上使用了2个jboss独立服务器实例并形成了一个集群。当我登录它们时,它工作正常。

现在,我正在尝试使用mod_jk来加载平衡,这样我就不需要使用端口来访问应用程序了。登录页面出现。提供凭据后,它会尝试登录,然后自动注销。

我的workers.properties文件:

# Define list of workers that will be used
# for mapping requests
# The configuration directives are valid
# for the mod_jk version 1.2.18 and later
#
worker.list=loadbalancer,status
# Define Node1
# modify the host as your host IP or DNS name.
worker.node1.port=8009
worker.node1.host=localhost
worker.node1.type=ajp13
worker.node1.lbfactor=1
worker.node1.prepost_timeout=10000 #Not required if using ping_mode=A
worker.node1.connect_timeout=10000 #Not required if using ping_mode=A
worker.node1.ping_mode=A #As of mod_jk 1.2.27

# Define Node2
worker.node2.port=8109
worker.node2.host=localhost
worker.node2.type=ajp13
worker.node2.lbfactor=1
worker.node2.prepost_timeout=10000 #Not required if using ping_mode=A
worker.node2.connect_timeout=10000 #Not required if using ping_mode=A
worker.node2.ping_mode=A #As of mod_jk 1.2.27


# Load-balancing behaviour
worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=node1,node2
worker.loadbalancer.sticky_session=TRUE

# Status worker for managing load balancer
worker.status.type=status

这在JBOSS EAP 5中运行良好。 知道我缺少什么,或者在JBoss EAP 6.4中是否可行。

1 个答案:

答案 0 :(得分:0)

instance-id应与worker.loadbalancer.balance_workers中的节点名称相同。 对于上面的情况,我们需要从jboss cli控制台运行,遵循以下命令: 例如:/profile=ha/subsystem=web:write-attribute(name="instance-id",value="node1")