- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 jboss 设置,在一台虚拟机上有 2 个 jboss 实例。2 个 jboss 中的每一个都与同一虚拟机上的 2 个 apache 通信。
<小时/>Apache 1 apache 监听端口为 82
<VirtualHost 192.168.1.2:6262>
<Directory />
Order deny,allow
Allow from all
</Directory>
KeepAliveTimeout 60
MaxKeepAliveRequests 0
ManagerBalancerName box1_cluster
ServerAdvertise Off
# AdvertiseFrequency 5
EnableMCPMReceive On
<Location /mod_cluster-manager>
SetHandler mod_cluster-manager
Order deny,allow
Allow from all
</Location>
</VirtualHost>
jboss 1
<subsystem xmlns="urn:jboss:domain:modcluster:1.1">
<mod-cluster-config advertise-socket="modcluster" connector="ajp" proxy-list="192.168.1.2:6262" balancer="box1_cluster">
<dynamic-load-provider>
<load-metric type="busyness"/>
</dynamic-load-provider>
</mod-cluster-config>
</subsystem>
<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
<socket-binding name="modcluster" port="0" multicast-address="224.0.1.105" multicast-port="23364"/>
<outbound-socket-binding name="mail-smtp">
<remote-destination host="localhost" port="25"/>
</outbound-socket-binding>
</socket-binding-group>
<小时/>
Apache 2,监听端口为83
<VirtualHost 192.168.1.2:6263>
<Directory />
Order deny,allow
Allow from all
</Directory>
KeepAliveTimeout 60
MaxKeepAliveRequests 0
ManagerBalancerName box2_cluster
ServerAdvertise Off
# AdvertiseFrequency 5
EnableMCPMReceive On
<Location /mod_cluster-manager>
SetHandler mod_cluster-manager
Order deny,allow
Allow from all
</Location>
</VirtualHost>
jboss 2
<subsystem xmlns="urn:jboss:domain:modcluster:1.1">
<mod-cluster-config advertise-socket="modcluster" connector="ajp" proxy-list="192.168.1.2:6263" balancer="box2_cluster">
<dynamic-load-provider>
<load-metric type="busyness"/>
</dynamic-load-provider>
</mod-cluster-config>
</subsystem>
<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
<socket-binding name="txn-status-manager" port="4713"/>
<socket-binding name="modcluster" port="0" multicast-address="224.0.1.105" multicast-port="23364"/>
<outbound-socket-binding name="mail-smtp">
<remote-destination host="localhost" port="25"/>
</outbound-socket-binding>
</socket-binding-group>
apache 运行良好并连接到 jboss 。apache 还检测所有已部署的应用程序。
<小时/>问题:-
When the
192.168.1.2:6262/mod_cluster-manager is done it shows the applications deployed on the 2nd jboss. I want to make sure that the apache 1 detects application that are deployed in jboss 1 and no other applications. Basically i want to use mod_cluster but dont want one jboss to talk to another.I want to use mod_cluster for jboss to autopublish applications to apache.But i dont want 2 jboss to talk to each other.
最佳答案
如果您不希望两个 JBoss 实例串扰(因为它们不在同一个集群中),那么您应该让 2 个节点监听唯一的多播地址。
顺便说一句,如果您不使用集群,您将失去 session 复制和高可用性的能力。
关于java - Jboss Eap - mod_cluster - 防止 jboss 互相交谈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18681504/
我有一个 jboss 集群,有 2 个节点(a 和 b)+ 1 个 apache 作为 mod_cluster(apache 在单独的服务器中) 如果其中一个nodeA出现故障,mod集群将无法连接到
我已设置并运行集群...Jboss 7.1.1.Final 和 mod_cluster mod_cluster-1.2.6.Final。 mod_cluster 负载平衡发生在两个节点之间 - 节点
谁能告诉我 mod_jk 与 mod_cluster 的优缺点。 我们正在寻找非常简单的负载平衡。我们将使用粘性 session ,并且只需要在一台服务器出现故障时将新请求路由到新服务器。我觉得 mo
我们目前正在测试从 Wildfly 8.2.0 迁移到 Wildfly 9.0.0.CR1(或从快照构建的 CR2)。该系统是一个使用 mod_cluster 的集群,并且在 VPS 上运行,这实际上
我正在将我的项目 Spring 迁移到 Spring Boot。但我面临一个问题,我们有一个使用 apache2 和 mod_cluster 的反向代理。在实际版本中,我们在 server.xml 中
我正在尝试让以下设置工作: apache 2.4 + mod_cluster 1.3 Final + ubuntu 14.04.2-server + Wildfly 8.1.0 Final 并且我成功
我正在运行带有 Apache 2.4.6 的 CentOS 7。我正在尝试使用 mod_cluster 1.2.6 创建 Wildfly/JBoss 集群。我已经在 Mac OSX 上成功完成了此任务
看起来我可以在 mod_proxy 中比 mod_cluster 做更多? 附件是它们的屏幕截图,但如果您使用 mod_proxy 查看,我可以从管理员更改负载因子、LB 集、路由等,但我在 mod_
我最近遇到了 this article ,讨论如何利用 mod_cluster 创建动态 Tomcat 集群。我的公司即将迈入 Amazon 的 EC2 云的第一步,并将在 Tomcat 7 上部署我
我有一个 jboss 设置,在一台虚拟机上有 2 个 jboss 实例。2 个 jboss 中的每一个都与同一虚拟机上的 2 个 apache 通信。 Apache 1 apache 监听端口为 82
我正在尝试让以下设置工作: 操作系统:Ubuntu 14.04.3 LTSApache2:Apache/2.4.7 (Ubuntu)mod_cluster 1.3.1wildfly:wildfly-1
我们在 Linux 上运行 Apache 2.2、mod_cluster 1.1 和 JBoss EAP 6.0.1 (JBoss 7)。 我试图在 JBoss 中设置虚拟主机,而不是在 jboss-
我有 apache 和 mod_cluster 用于 Wildfly 集群 我在 443 上有一个虚拟主机 我在同一服务器 apache 上的 8443 上有一个 NodeJS 我想将服务器/api重
我是一名优秀的程序员,十分优秀!