Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
14 views

ActiveMQ admin webapp assets not found behind apache httpd proxy, what am I missing?

I have apache httpd setup to act as a proxy to different servers I have running. I recently installed ActiveMQ which includes an "admin" and "demo" app that I'd like to expose. When I start ActiveMQ ...
0
votes
1answer
24 views

Disable ActiveMQ demo component

Is it possible to disable the demo component of the Active MQ console? I have tried removing the following lines from jetty.xml but the /demolink still works. <bean ...
1
vote
0answers
50 views

Apache ActiveMQ Server-to-Server connection

Our company now uses Websphere MQ to facilitate communication with our business partners, but we're evaluating migration to ActiveMQ. I've read some documentation and articles and haven't found ...
0
votes
0answers
103 views

Setup ActiveMQ on Debian

I am trying to setup ActiveMQ on Debian using this guide http://www.jmkg.co.uk/2010/08/31/installing-activemq-on-ubuntu/ I created the user using sudo adduser --system --no-create-home --home ...
0
votes
0answers
69 views

Installing ActiveMQ with SSL failing

I am trying to get SSL working on ActiveMQ but keep running into the error: SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long) I am ...
2
votes
1answer
59 views

Installation of SSL certificates onto stand-alone ActiveMQ failing

I am trying to get SSL working on ActiveMQ but keep running into the error: SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long) I am ...
0
votes
1answer
86 views

ActiveMq C++ client install

I m trying to install ActiveMQ C++ client install (CMS) I am getting the following error, when i try to configure. configure: WARNING: APR not found The Apache Portable Runtime (APR) library cannot ...
1
vote
1answer
78 views

Recording all broker transactions in ActiveMQ

I would like to record all transactions that happen in ActiveMQ. When someone writes to a queue or reads from it, I would like to log that. Is there a way to turn on this kind of logging, or is there ...
1
vote
1answer
71 views

Where can find older releases of Apache MQ?

On the apache web site there are links for several older releases but it appears that only the last two releases are actually stored on the mirros. I am having issues with the last two releases on ...
1
vote
4answers
91 views

How to find the program responsible for a specific TCP socket (linux)

joe@server:~$ sudo lsof -i :36168 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME java 23059 activemq 15u IPv6 109382 0t0 TCP *:36168 (LISTEN) From the output above I want ...
0
votes
3answers
126 views

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 ...
1
vote
1answer
275 views

activemq on window: can't start service as LocalSystem account

I'm trying to run activemq as a service on my windows7 machine, service install properly, but it does not start as LocalSystem account. It works perfectly if I start it with logon property as my user. ...
1
vote
2answers
179 views

deleting nohup.out file

I have a file called "nohup.out". It is consuming a lot of space and I will like to remove it. /opt/apache-activemq-5.2.0/bin/nohup.out: 4.2G Will it affect the application in any way? I do not ...
0
votes
1answer
577 views

ActiveMQ Pure Master / Slave - Out of sync

What i have : 1 master broker and 1 slave broker both in ActiveMQ 5.4.0 What i use : waitForSlave on master side and failover uri on slave side (in the master connector URI) What i want to do : I ...
3
votes
1answer
242 views

high level design of sms transaction handling system

I have been tasked with designing a system do handle SMS transactions. Transactions come in form of HTTP requests from a service provider. In the process of handling transaction, system in question ...
0
votes
2answers
120 views

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 ...
1
vote
1answer
402 views

ActiveMQ - Stomp + NIO

I currently use ActiveMQ to serve a STOMP message queue with several topics. As we are now starting to get several thousand connections to the queue, I have been trying to implement NIO to reduce the ...
2
votes
1answer
891 views

ActiveMQ with persistence in a database

Are any of you running ActiveMQ with persistence in a database? Even better, in an Oracle database? We're wanting to replace our current JMQ uses with ActiveMQ. The plan is to have two machines ...