Instalando RabbitMQ no Ubuntu 12.04 LTS

As instruções de instalação podem ser encontradas em grande parte aqui , mas no caso de você ter um pequeno soluço parecido com:

Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation
or if you are using the unstable
distribution that some required packages have
not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the
package is simply not installable and a bug report against
that
package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
rabbitmq
-server: Depends: erlang-nox (>= 1:12.b.3) but 1:11.b.5dfsg-11 is to be installed
E
: Broken packages

o truque é remover qualquer instalação existente de rabbitmq e erlang-nox.

Aqui estão minhas etapas de instalação, usando o repositório RabbitMQ APT:

  1. Adicione a seguinte linha ao seu /etc/apt/sources.list: deb http://www.rabbitmq.com/debian/ testing main
  2. Adicione a chave pública RabbitMQ à lista de chaves confiáveis: wget http://www.rabbitmq.com/rabbitmq-signing-key-public.ascesudo apt-key add rabbitmq-signing-key-public.asc
  3. Corra apt-get update.
  4. Desinstale a instalação existente do RabbitMQ: sudo apt-get remove rabbitmq-server
  5. Desinstale o erlang-nox existente: sudo apt-get remove erlang-nox
  6. Reinstale o RabbitMQ mais recente: sudo apt-get install rabbitmq-server

A postagem original pode ser encontrada aqui