ActiveMQ的Networks of Broker部署方案

本文介绍了如何部署ActiveMQ的Networks of Broker,通过修改activemq.xml配置登录验证和networkConnector实现负载均衡。在broker间配置networkConnector,当消息积压时,消费者可以从其他broker消费,确保高可用。通过示例演示了生产者和消费者的运行,展示了队列间的双向消息消费。
摘要由CSDN通过智能技术生成

1、下载activeMQ安装包http://activemq.apache.org/download-archives.html

2、修改conf文件下的activemq.xml文件,添加登录验证和networkConnector,如下:

     

<broker xmlns="http://activemq.apache.org/schema/core" brokerName="broker-2" dataDirectory="${activemq.data}">
	
	  
	 <plugins>   
            <simpleAuthenticationPlugin>   
                <users>   
                    <authenticationUser username="${activemq.username}" password="${activemq.password}" groups="users,admins"/>   
                </users>   
            </simpleAuthenticationPlugin>   
        </plugins>
	
       <networkConnectors> 
          <networkConnector uri="static:(tcp://127.0.0.1:61616)"  userName="system" password="manager"/>
        </networkConnectors>

   ......
</broker>
用户名和密码在 conf/credentials.properties中 ,这个broker-2的tansportConnectors
<transportConnectors>
            <!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB -->
            <transportConnector name="openwire" uri="tcp://0.0.0.0:61626?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="amqp" uri="amqp://0.0.0.0:5675?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="stomp" uri="stomp://0.0.0.0:61619?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="mqtt" uri="mqtt://0.0.0.0:1886?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="ws" uri="ws://0.0.0.0:61615?maximumConnections=1000&wireFormat.maxFrameSize=104857600"/>
        </transportConnectors>
它的端口号是61626,而broker-1的端口号是61616,由于是在一台机器上模拟两个broker,

<broker xmlns="http://activemq.apache.org/schema/core" brokerName="broker-1" dataDirectory="${activemq.data}">
	
	 <plugins>   
            <simpleAuthenticationPlugin>   
                <users>   
                    <authenticationUser username="${activemq.username}" password="${activemq.password}" groups="users,admins"/>   
                </users>   
            </simpleAuthenticationPlugin>   
        </
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值