https://github.com/andre2l2/rabbitmq-example
A reabbitMQ example and usecases
https://github.com/andre2l2/rabbitmq-example
queue rabbitmq typescript
Last synced: over 1 year ago
JSON representation
A reabbitMQ example and usecases
- Host: GitHub
- URL: https://github.com/andre2l2/rabbitmq-example
- Owner: andre2l2
- Created: 2022-05-12T02:51:46.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-11T17:32:12.000Z (almost 4 years ago)
- Last Synced: 2025-01-06T05:28:48.734Z (over 1 year ago)
- Topics: queue, rabbitmq, typescript
- Language: TypeScript
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RabbitMQ Example
## How to run
### Docker run
```bash
docker run -d -p 15672:15672 -p 5672:5672 --hostname my-rabbit --name some-rabbit rabbitmq:3-management
```
### Ports
- GUI interface port on: **15672**
- AMQP protocol port on: **5672**
### Default Auth
| Protocol | Port | Login | Passowrd |
| -------- | ----- | ----- | -------- |
| HTTP | 15672 | guest | guest |
| AMQP | 5672 | - | - |