views:

55

answers:

3

I am using rabbitmq-server as a ampq server with python client on Ubuntu 10.04 64 bit OS.

Rabbitmq-server now fails to start. I uninstalled and installed the latest rabbitmq-server 1.8.0 but still I could not make rabbitmq to work.

I want to other alternative with less learning curve to use the ampq on ubuntu system. Can you recommend one?

+1  A: 

OpenAMQ http://www.openamq.org/

lrm
A: 

Did you try deleting /var/lib/rabbitmq?

Seb
+1  A: 

OpenAMQ is dead. The creators of OpenAMQ and of the AMPQ specification are dropping support for it in 2011.

They suggest to switch to ZeroMQ. I suggest the same. Take a look at the ZeroMQ manual. The messaging becomes really simple. Create a socket, do send. No broker needs to be started. Applications use TCP addresses to specify the destinations.

The Python API uses the same functions.

Ivo Danihelka