Questions tagged [activemq]

Apache ActiveMQ is an enterprise-level open source message broker and JMS client

Apache ActiveMQ is an open source message broker written in Java together with a full Java Message Service (JMS) client. It provides "Enterprise Features" which in this case means fostering the communication from more than one client or server. Supported clients include Java via JMS 1.1 as well as several other "cross language" clients. The communication is managed with features such as computer clustering and ability to use any database as a JMS persistence provider besides virtual memory, cache, and journal persistence.

Source:

https://en.wikipedia.org/wiki/Apache_ActiveMQ

55 questions
1
vote
0 answers

ActiveMQ automatic Configuration file change and Re-Deployment

How can we automate the task of a configuration file change for ActiveMQ? Situation: We are running a T.A.P. street of ActiveMQ servers (5.15.7), the A and P environments are in a SAN Master Slave Configuration. Probably soon expanded to redundant…
1
vote
1 answer

Can ActiveMQ Artemis be used as a "protocol adaptor"?

We have an IoT infrastructure with devices communicating over MQTT. However, now we also have the requirement that these devices must post sensor data to a queue for cloud processing that evaluates and stores it. As MQTT does not support a pulling…
UncleBob
  • 247
  • 2
  • 13
1
vote
1 answer

Mcollective Failed to set full SSL verified mode error

I'm trying to set up MCollective using jorhett/puppet-mcollective module, according to manual from "Learning Puppet 4" book. I'm getting following error after running "mco ping", "mco inventory node_name" etc. warn 2016/08/11 07:21:19:…
Dziki_Jam
  • 33
  • 6
1
vote
1 answer

activemq network of broker messages not flowing

activemq 5.12 Network of broker configuration: hub, spoke1, spoke2 spoke1 has duplex n/w connection to hub spoke2 has duplex network connection to hub I use the following to produce on spoke1 bin/activemq producer --brokerurl tcp://0.0.0.0:61616…
mg03
  • 197
  • 1
  • 8
1
vote
1 answer

ActiveMQ - delete VirtualTopic when Consumers = zero

I'm trying to implement a new application using JMS under activeMQ 5.8.0. There are several applications configured as Producers (ie to dump messages in an MQ), two topics, and then the Consumers are configured to look at their VirtualTopic which is…
damian
  • 11
  • 4
1
vote
0 answers

How can I access ActiveMQ remotely on CentOS 6.5?

I tried to use the following code: iptables -A INPUT -m state --state NEW -m tcp -p tcp \ --dport 8161 -j ACCEPT -m comment \ --comment "ActiveMq Server port" Still I was unable to access it remotely. The process is running locally, ss -tulpan…
MahuLovzYou
  • 121
  • 1
  • 1
  • 6
1
vote
1 answer

Is it possible to use different connectors on MCollective client and server side?

Is it possible to use the STOMP connector on client side and ActiveMQ on server side? Here are my configurations: #client.cfg connector = stomp plugin.stomp.host = localhost plugin.stomp.port = 6163 plugin.stomp.user =…
ddario
  • 511
  • 1
  • 3
  • 12
1
vote
1 answer

activemq apollo create broker error

I have been trying to create a broker on my activemq apache-apollo 1.6 installation. When I execute the following command: $APOLLO_HOME/bin/apollo create log1broker I get the following error: Exception in thread "main"…
rahrahruby
  • 587
  • 6
  • 12
  • 21
1
vote
3 answers

Howto check open ports of a specific tomcat java instance

For the moment I've managed to do it with: root@server:~# for i in $(netstat -lp | grep java | awk '{print $7}' | awk -F '/' '{print $1}' | sort | uniq); do ap=$(ps p $i | grep -v PID | grep activemq | awk '{print $1}'); done; netstat -lp | grep…
Joe Nazz
  • 171
  • 1
  • 2
  • 9
1
vote
2 answers

Encrypting MSMQ

So I want to do asynchronous, disconnected, across-the-Internet messaging with WCF. Probably due to my background in Apache ActiveMQ, I'm looking at MSMQ for this. In ActiveMQ, it was a simple thing to encrypt a queue connection; you simply chose an…
Kyle
  • 1,859
  • 2
  • 17
  • 23
1
vote
0 answers

ActiveMQ Artemis: Use Plain TCP and TLS in parallel

In ActiveMQ Artemis, when acceptors and connectors are both configured, we see clients connecting to the TCP as well as the TLS port. How can we control that a client stays on its initial connection protocol? I.e., a client connecting via TLS should…
Stephan
  • 275
  • 2
  • 7
1
vote
2 answers

PUB/SUB Message Queue with server side filtering?

I am looking for a message queue to realize a chat application. The most important requirement is: when a subscriber specifies a filter criteria, all the messages need to be filtered on the server side. Unfortunately I don't find definite answers to…
1
vote
1 answer

ActiveMQ Artemis: Message draining without HA policy "scale-down"

In an ActiveMQ Artemis HA cluster (v2.13.0), the HA policy’s property causes the backup broker to move all pending messages to one of the remaining live instances if the master instance fails. Once drained, the slave broker stops…
Stephan
  • 275
  • 2
  • 7
1
vote
1 answer

ActiveMQ Artemis: Cannot join more than two brokers with JGroups and KUBE_PING

While testing Apache ActiveMQ Artemis 2.13.0 with JGroups and the KUBE_PING plugin on Kubernetes I have noticed that no more than two brokers form a cluster. Any other brokers are simply ignored, whether they are started at the same time or…
Stephan
  • 275
  • 2
  • 7
0
votes
1 answer

How enable ActiveMQ persistence?

I want save not consumed messages after amq or machine restart. Is this doc actual for ActiveMQ 5.12.1 Release? I try use example from docs and get error: ERROR | Failed to load: class path resource [activemq.xml], reason: Line 86 in XML document…
Hayate
  • 171
  • 1
  • 8