56 lines
957 B
Markdown
56 lines
957 B
Markdown
|
#RabbitMQ
|
||
|
|
||
|
### 설치
|
||
|
[설치 공식문서](https://www.rabbitmq.com/install-windows.html)
|
||
|
- Chocolatey 이용한 설치
|
||
|
> choco install rabbitmq
|
||
|
|
||
|
- 서비스 실행중인지 확인
|
||
|
> netstat -ano | findstr 5672
|
||
|
|
||
|
- RabbitMQ Management 접속 guest/guest
|
||
|
> http://localhost:15672
|
||
|
|
||
|
|
||
|
- 클라이언트 다운로드
|
||
|
>https://search.maven.org/search?q=g:com.rabbitmq%20AND%20a:amqp-client
|
||
|
|
||
|
- Maven
|
||
|
> groupId : com.rabbitmq
|
||
|
artifactId : amqp-client
|
||
|
|
||
|
- 로그파일 경로 변경
|
||
|
https://heodolf.tistory.com/53
|
||
|
|
||
|
---
|
||
|
|
||
|
|
||
|
### 운영 명령어
|
||
|
- 노드 중지 | 상태
|
||
|
> rabbitmqctl.bat stop | status
|
||
|
|
||
|
- Queue 삭제
|
||
|
rabbitmqctl stop_app
|
||
|
|
||
|
rabbitmqctl reset
|
||
|
|
||
|
rabbitmqctl start_app
|
||
|
|
||
|
rabbitmqctl list_queues
|
||
|
|
||
|
- 클러스터 노드 확인
|
||
|
rabbitmqctl cluster_status
|
||
|
|
||
|
---
|
||
|
|
||
|
- CentOS 설치
|
||
|
https://kabby91.tistory.com/49
|
||
|
|
||
|
|
||
|
|
||
|
http://gtgear.co.kr/m/product.html?branduid=3369406&xcode=008&mcode=002&scode=002&type=Y&sort=sellcnt&cur_code=008002002&GfDT=Z2h3UA%3D%3D
|
||
|
|
||
|
|
||
|
---
|
||
|
|