The activemq tag has no wiki summary.
0
votes
0answers
19 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
21 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 ...
1
vote
1answer
18 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
0answers
14 views
Pending Messages, but Browsing Queue Shows No Messages
I am looking for some help in troubleshooting an ActiveMQ installation. We are running ActiveMQ 5.4.2 on Linux on Java 1.6.0.25 using Java Hot Spot 64-bit Server VM. We're using KahaDB as our ...
0
votes
1answer
53 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
66 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
4answers
75 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
89 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
163 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
105 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
0answers
162 views
Prebuilt ActiveMQ Server Based off ZeroMQ
Are there any distributions of fully built Message Brokers that are initially based off of ZeroMQ? I had thought that downloading/installing ZeroMQ would give me such, not just a handful of procedures ...
0
votes
1answer
431 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
222 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
109 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
369 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
806 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 ...