资料: .net demo : https://github.com/apache/activemq-artemis/tree/master/examples/protocols/amqp/dotnet AMQP 1.0 .NET Library:  https://github.com/Azure/amqpnetlite,https://github.com/Azure/amqpnetlite/blob/master/docs/articles/hello_amqp.md 相关博文:https…
简单记一下,下载地址 http://activemq.apache.org/download.html 一.安装JDK7以上,官方说明:http://activemq.apache.org/version-5-getting-started.html 二.创建目录: cd /usr mkdir activemq 并上传apache-activemq-5.14.1-bin.tar.gz到activemq目录下 三.解压apache-activemq-5.14.1-bin.tar.gz -bin.t…
Apache ActiveMQ是Apache软件基金会所研发的开放源码消息中间件:由于ActiveMQ是一个纯Jave程式,因此只需要操作系统支持Java虚拟机,ActiveMQ便可执行. 1.queue与topic的两种消息模式特点对比   Topic Queue 概要 Publish Subscribe messaging 发布订阅消息 Point-to-Point 点对点 有无状态 topic数据默认不落地,是无状态的. Queue数据默认会在mq服务器上以文件形式保存,比如Active…
本文描述apache activemq 版本更迭的原因以及Apache ActiveMQのThe Failover Transport new features in 5.2.0  1.对信息的传输/消耗,快速产生,缓慢消耗,利用率限制,从变主等有一些建议 2.通过spring/xbean 加强了ssl安全的配置 3.消息消耗的新模式 4.有能力去配置自动丢弃的信息,这些信息是存在已经死去的队列里面 5.有能力限制最大的连接数量对于代理来讲 6.有能力配置JDBC锁 7.activemq-cam…
1.activemq的重连机制 maxReconnectAttempts -1 | 0 From version 5.6 onwards: -1 is default and means retry forever, 0 means don't retry (only try connection once but no retry). Prior to version 5.6: 0 is default and means retry forever. All versions: If set…
0.activemq的概念 activemq实现了jms(java Message server),用于接收,发送,处理消息的开源消息总线. 1.activemq和jms的区别 jms说白了就是java message service,是J2EE规范的一部分,跟jdbc差不多,sun只提供了接口,由各个厂商(provider)来进行具体的实现,然后使用者使用他们的jar包进行开发使用即可. 另外在jms的API中,jms传递消息有两种方式,一种是点对点的Queue,还有一个是发布订阅的Topic…
原文地址:https://simplesassim.wordpress.com/2013/11/03/how-to-setup-replicated-leveldb-persistence-in-apache-activemq-5-9/ 1) Install Apache ZooKeeper. 2) Change the persistence adapter in the <Apache ActiveMQ Install Dir>/etc/activemq.xml file: 1 2 3 &…
Apache ActiveMQ是Apache软件基金会所研发的开放源码消息中间件:由于ActiveMQ是一个纯Java程式,因此只需要操作系统支援Java虚拟机,ActiveMQ便可执行. 支持Java消息服务 (JMS) 1.1 版本Spring Framework集群 (Clustering)支持的编程语言包括:C.C++.C#.Delphi.Erlang.Adobe Flash.Haskell.Java.JavaScript.Perl.PHP.Pike.Python和Ruby [1]协议支…
安装说明 安装环境:CentOS-6.3 安装方式:源码安装  软件:apache-tomcat-7.0.29.tar.gz下载地址http://activemq.apache.org/download.html 1.mkdir /usr/apachemq 2.上传apachemq 3.解压apachemq tar -xzvf /usr/apachemq/apache-activemq-5.6.0-bin.tar.gz 4.修改activemq运行文件的权限 cd /usr/apachemq/a…
ActiveMQ的集群 内嵌代理所引发的问题: 消息过载 管理混乱 如何解决这些问题--集群的两种方式: Master slave Broker clusters ActiveMQ的集群有两种方式: MASTER/SLAVE模式 Cluster模式 Pure Master Slave Pure master slave的工作方式: 当master broker失效的时候.Slave broker 做出了两种不同的相应方式 启动network connectors和transport connec…