개인 저장용 블로그

RabbitMQ Tutorials - Downloading and install RabbitMQ (1) 본문

오픈소스/RabbitMQ

RabbitMQ Tutorials - Downloading and install RabbitMQ (1)

우엉잇 2022. 4. 4. 10:01

 RabbitMQ는 AMQP(Advandced Message Queuing Protocol) 프로토콜을 구현한 오픈 소스 메시지 브로커로, 메시징큐 기능을 수행하는 오픈 소스입니다. 

 

이번 목차는 RabbitMQ Touorials을 하기 전 환경 구성을 하기 위한 내용입니다. ​

 

2022 3 18 기준으로 RabbitMQ 최신 릴리스는 3.9.13 입니다. 다음으로 진행 내용은 Docker 이미지를 통해 RabbitMQ 사용 합니다. 환경 구성이 끝난 VM 깨질 있으니 스냅샷을 찍는걸 추천 드립니다.

 

# for RabbitMQ 3.9, the latest series

mwno@master:~# sudo docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.9-management
Unable to find image 'rabbitmq:3.9-management' locally
3.9-management: Pulling from library/rabbitmq
7c3b88808835: Pull complete
1b19cf6b1093: Pull complete
c570f9746b10: Pull complete
c9ce585f00fa: Pull complete
74509f5b06ff: Pull complete
3eef2eb5490a: Pull complete
f5846327d6bc: Pull complete
e8f0d86bcfa9: Pull complete
d7d02dcb85f9: Pull complete
16856ac759d1: Pull complete
Digest: sha256:afde9702890c6475c66960c56157d4f84fc62dd273dcbd55ac7eac68a25eb929
Status: Downloaded newer image for rabbitmq:3.9-management
.
.
Config file(s): /etc/rabbitmq/conf.d/10-default-guest-user.conf
.
.
.
2022-03-18 00:53:35.936762+00:00 [info] <0.814.0> started TCP listener on [::]:5672
.
.
 

 

# console 접속 정보

URL http://${IP}:15672/
ID guest
PASSWD guest

 

# Console 접속 화면

RabbitMQ Console