Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
rabbitmq_agents
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Krish Moodbidri
rabbitmq_agents
Commits
f19ff2d8
Commit
f19ff2d8
authored
1 month ago
by
Krish Moodbidri
Browse files
Options
Downloads
Patches
Plain Diff
Add RabbitMQ installation and setup guide to README
parent
f29f5656
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#13830
passed with warnings with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+39
-3
39 additions, 3 deletions
README.md
with
39 additions
and
3 deletions
README.md
+
39
−
3
View file @
f19ff2d8
...
...
@@ -49,12 +49,48 @@ This project automates user registration workflows at UAB using **RabbitMQ** to
###
Prerequisites
-
RabbitMQ
server
running
with
the
`RegUsr`
exchange.
-
macOS
-
SQLite
database
for
UID/GID
storage.
-
Homebrew
-
Python
3
.x
###
Configuration
Steps
###
Install
and
Setup
RabbitMQ
```
bash
brew update
brew install rabbitmq
```
### Add RabbitMQ to Your PATH
```
echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.zshrc
source ~/.zshrc # Reload your shell to apply changes
```
### Start RabbitMQ
```
brew services start rabbitmq
```
### Check RabbitMQ Status
```
rabbitmqctl status
```
### ccess the Management UI
- **URL**: [http://localhost:15672](http://localhost:15672/)
- **Credentials**:
- Username: `guest`
- Password: `guest`
### WIP Configuration Steps
1. **Bind Queues to `RegUsr` Exchange**:
Use these routing keys:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment