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

Apache httpd configuration with clustered jboss eap 6.4 standalone environemnt

我正在使用 JBoss EAP 6.4.0

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

现在,我正在尝试使用 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.

中是否可行

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