Re: Compiling issue with ActiveMQ-CPP on armv7l

2013-06-25 Thread kururuKT
Hello all, An update to the situation, it turns out the cause of the compiling error is out of memory. I restart the compilation with a higher memory device and got pass that point. However I've encountered an error again with the error below: libtool: link: `cms/libactivemq_cpp_la-Destination.l

Re: ActiveMQ won't start

2013-06-25 Thread Sean Beck
Just so everyone knows I figured it out. Instead of setting JAVA_HOME which it seemed to be ignoring, I set JAVACMD equal to the path to my jre rather than "auto"

Re: Using BlobMessage with ActiveMQ inside ServiceMix

2013-06-25 Thread Christian Posta
Thanks for closing the loop. Probably a good choice. On Tue, Jun 25, 2013 at 1:26 AM, cristisor wrote: > We have decided to go with an embedded Apache MINA FtpServer for increased > performance and scalability. I think that the FtpServer is lighter than an > embedded Jetty server and it servers

Re: web console to monitor ActiveMQ

2013-06-25 Thread Christian Posta
Try this to get it working w/ stand-alone activemq; http://www.christianposta.com/blog/?p=298 On Tue, Jun 25, 2013 at 4:46 AM, Dejan Bosanac wrote: > You should try http://hawt.io/. We intend to use it as a replacement for > current web console going forward. > > Regards > -- > Dejan Bosanac >

Re: Producer Window Size

2013-06-25 Thread Christian Posta
yes. if you send asynchronously (tx or non-persist messages by default), you can enable producer window to not block the connection on producer flow control. On Tue, Jun 25, 2013 at 4:14 AM, bizcenter wrote: > In org.apache.activemq.broker.region.Queue#send(ProducerBrokerExchange, > Message), i

Re: ActiveMQ won't start

2013-06-25 Thread Sean Beck
Even though I commented out JAVACMD in the config file and am using JAVA_HOME it still continues to autodetect and use /usr/bin/java which I don't want either

Re: ActiveMQ won't start

2013-06-25 Thread Sean Beck
Outputs this: INFO: Loading '/etc/default/activemq' INFO: Using java '/usr/bin/java' INFO: Starting in foreground, this is just for debugging purposes (stop process by pressing CTRL+C) Can't start up: not enough memory

Re: ActiveMQ 5.8: Failed to execute purge task

2013-06-25 Thread Christian Posta
Try it out on the latest snapshot to verify it works. On Tue, Jun 25, 2013 at 6:54 AM, Francisco wrote: > I'm having the same problem. > > In addition, if you use a message selector (like the one to select by > priority) you will have an error like this one: > > > > Waiting for 5.8.1... > > > >

Re: ActiveMQ won't start

2013-06-25 Thread Christian Posta
what happens when you try ./bin/activemq console On Tue, Jun 25, 2013 at 11:13 AM, Sean Beck wrote: > I checked the log file and it is empty. > > I went into my configuration as well and set JAVA_HOME to > /opt/jdk1.7.0_25/jre/bin/java which is where java is installed and it > didn't change any

Re: ActiveMQ won't start

2013-06-25 Thread Sean Beck
I checked the log file and it is empty. I went into my configuration as well and set JAVA_HOME to /opt/jdk1.7.0_25/jre/bin/java which is where java is installed and it didn't change anything either.

Re: ActiveMQ won't start

2013-06-25 Thread Christian Posta
set JAVA_HOME for the jvm to use... what do you see in the $ACTIVEMQ_HOME/data/activemq.log file? On Tue, Jun 25, 2013 at 10:38 AM, Sean Beck wrote: > I'm trying to run activemq on a new machine. I installed the binary and am > starting it with bin/activemq start > > It gives the following outp

ActiveMQ won't start

2013-06-25 Thread Sean Beck
I'm trying to run activemq on a new machine. I installed the binary and am starting it with bin/activemq start It gives the following output: INFO: Using default configuration (you can configure options in one of these file: /etc/default/activemq /root/.activemqrc) INFO: Invoke the following com

Re: JMS 2.0 alignment

2013-06-25 Thread IBeaumont21
I had the same question. No plans? I've also had a quick look at the Apache Apollo site, and see little mention of JMS on there. -- View this message in context: http://activemq.2283324.n4.nabble.com/JMS-2-0-alignment-tp4668129p4668563.html Sent from the ActiveMQ - User mailing list archive

Re: Apollo Stomp Message Priority

2013-06-25 Thread darrenw2112
One more quick question. Do you have any idea of a time frame for this to be implemented? Thanks again, Darren -- View this message in context: http://activemq.2283324.n4.nabble.com/Apollo-Stomp-Message-Priority-tp4668120p4668559.html Sent from the ActiveMQ - User mailing list archive at Nab

Re: ActiveMQ 5.8: Failed to execute purge task

2013-06-25 Thread Francisco
I'm having the same problem. In addition, if you use a message selector (like the one to select by priority) you will have an error like this one: Waiting for 5.8.1... -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-5-8-Failed-to-execute-purge-task-tp466361

Re: How to show current admin IP+port info line at startup?

2013-06-25 Thread Dejan Bosanac
Hi, we bumped jetty logging to warn level in recent versions. To revert it back, just change the appropriate line to log4j.logger.org.eclipse.jetty=INFO in conf/log4j.properties Regards -- Dejan Bosanac -- Red Hat, Inc. FuseSource is now part of Red Hat dbosa...@redhat.com T

Re: How to secure the access to the web console in AMQ 5.8 using JAAS and Apache DS

2013-06-25 Thread Dejan Bosanac
Hi, so in order to secure web console, you need to secure the Jetty instance. Take a look at conf/jetty.xml. We use by default simple HashLoginService, but you can configure it using jaws http://wiki.eclipse.org/Jetty/Tutorial/JAAS Unfortunately, I'm not aware of any examples beyond this. Regar

Re: web console to monitor ActiveMQ

2013-06-25 Thread Dejan Bosanac
You should try http://hawt.io/. We intend to use it as a replacement for current web console going forward. Regards -- Dejan Bosanac -- Red Hat, Inc. FuseSource is now part of Red Hat dbosa...@redhat.com Twitter: @dejanb Blog: http://sensatic.net ActiveMQ in Action: http://www.

Producer Window Size

2013-06-25 Thread bizcenter
In org.apache.activemq.broker.region.Queue#send(ProducerBrokerExchange, Message), it just determine that the producerWindowSize is greater than 0, so set producerWindowSize to 1024 or 10240 can do the same effect??? am i right? public void send(final ProducerBrokerExchange producerExchange, final

Producer Window Size

2013-06-25 Thread bizcenter
In org.apache.activemq.broker.region.Queue#send(ProducerBrokerExchange, Message), it just determine that the producerWindowSize is greater than 0, so set producerWindowSize to 1024 or 10240 can do the same effect??? am i right? public void send(final ProducerBrokerExchange producerExchange, final

Producer Window Size

2013-06-25 Thread bizcenter
In org.apache.activemq.broker.region.Queue#send(ProducerBrokerExchange, Message), it just determine that the producerWindowSize is greater than 0, so set producerWindowSize to 1024 or 10240 can do the same effect??? am i right? public void send(final ProducerBrokerExchange producerExchange, final

Re: Using BlobMessage with ActiveMQ inside ServiceMix

2013-06-25 Thread cristisor
We have decided to go with an embedded Apache MINA FtpServer for increased performance and scalability. I think that the FtpServer is lighter than an embedded Jetty server and it servers our needs perfectly. -- View this message in context: http://activemq.2283324.n4.nabble.com/Using-BlobMessag

Re: Two ActiveMQ brokers in same cluster are behaving as Masters

2013-06-25 Thread Venkata Bellamkonda
Hi Jakub, did you get any information to share with us or do you require any more information to help us out. -- View this message in context: http://activemq.2283324.n4.nabble.com/Two-ActiveMQ-brokers-in-same-cluster-are-behaving-as-Masters-tp4668301p4668542.html Sent from the ActiveMQ - User