티스토리 뷰
로컬에서 테스트 해볼려면 docker로 설치해서 사용하는게 편하다. Mac사용자이면 Homebrew를 통해서도 설치할 수도 있다.
아무래도 docker가 편할 것 같다.
docker pull rabbitmq
docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 \
--restart=unless-stopped \
-e RABBITMQ_DEFAULT_USER={사용할계정ID} \
-e RABBITMQ_DEFAULT_PASS={비밀번호} \
rabbitmq:management
http://localhost:15672
상기 옵션의 정보들
-d : 백그라운드로 실행
--name rabbitmq : 해당 컨테이너 이름을 rabbitmq로 실행
-p 5672:5672 -p 15672:15672 : HOST와 컨테이너간 포트 포워딩 (5672: rabbitmq 기본통신포트, 15672: rabbitmq-server의 통신포트 (이외에 클러스터 구성이 필요하다면 25672도 필요))
--restart=unless-stopped : 해당 컨테이너를 사용자가 멈추기 전까지 계속 재부팅
rabbitmq:management : rabbitmq이미지 중 management기능이 있는 rabbitmq-server까지 포함된 이미지를 실행
만약 설치할 수 있는 서버가 있다면 패키지 관리자로 설치하는 방법들이 많이 있다..
DOCS
https://registry.hub.docker.com/_/rabbitmq/
Rabbitmq - Official Image | Docker Hub
We and third parties use cookies or similar technologies ("Cookies") as described below to collect and process personal data, such as your IP address or browser information. You can learn more about how this site uses Cookies by reading our privacy policy
registry.hub.docker.com
https://www.rabbitmq.com/configure.html
Configuration — RabbitMQ
Configuration RabbitMQ comes with default built-in settings. Those can be entirely sufficient in some environment (e.g. development and QA). For all other cases, as well as production deployment tuning, there is a way to configure many things in the broker
www.rabbitmq.com
- Total
- Today
- Yesterday
- oracle
- mybatis config
- Spring Security
- jQuery
- window
- 오라클
- intellij
- Spring
- localtime
- rocky
- k8s
- springboot
- 북리뷰
- LocalDate
- claude
- svn
- config-location
- Kotlin
- docker
- LocalDateTime
- Mac
- elasticsearch
- 베리 심플
- Linux
- JavaScript
- Java
- Bash tab
- maven
- input
- mybatis
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |