본문 바로가기

Etc..

RabbitMQ 최신버전 설치하기

우분투에서 RabbitMQ를 apt-get 으로 설치하면 하위 버전이 설치가 되는 경우가 있다.


이는 sources.list를 업데이트 해주면 최신 버전을 설치할 수 있다.


설치 방법은 RabbitMQ 사이트에 안내되어 있다.

https://www.rabbitmq.com/install-debian.html


Using rabbitmq.com APT Repository

  1. Add the following line to your /etc/apt/sources.list:
    deb http://www.rabbitmq.com/debian/ testing main
    (Please note that the word testing in this line refers to the state of our release of RabbitMQ, not any particular Debian distribution. You can use it with Debian stable, testing or unstable, as well as with Ubuntu. We describe the release as "testing" to emphasise that we release somewhat frequently.)
  2. (optional) To avoid warnings about unsigned packages, add our public key to your trusted key list using apt-key(8):
    wget https://www.rabbitmq.com/rabbitmq-signing-key-public.asc
    sudo apt-key add rabbitmq-signing-key-public.asc

    Our public signing key is also available from Bintray.

  3. Run apt-get update.
  4. Install packages as usual; for instance,
    sudo apt-get install rabbitmq-server