0

我在同一台机器上有两个具有不同端口的 jboss 节点,我安装了 apache 服务器并在 apache/conf/httpd.conf 中配置了 mod_cluster,如下所示:

<VirtualHost *:8000>
 <Directory>
 Order deny,allow
 Allow from all
 </Directory>
<Location /mod_cluster_manager>
    SetHandler mod_cluster-manager
    Order deny,allow
    Allow from all
</Location> 
</VirtualHost>

您能帮我在 jboss eap Standalone-ha.xml和任何其他配置文件中还需要配置什么吗?

4

1 回答 1

0

在配置文件中指定 apache 服务器详细信息:

子系统 xmlns="urn:jboss:domain:modcluster:1.2"> mod-cluster-config proxy-list="10.10.10.10:6666" advertise="false" connector="ajp">

在standalone-ha.xml 中添加proxy-list 属性以包含上面设置的httpd 的mod_cluster 监听ip:

于 2016-07-07T01:19:57.720 回答