https://store-images.s-microsoft.com/image/apps.62972.43fc3d94-3d93-4a02-842c-8df66e17439f.17ab2ce8-e422-4602-8efa-af16051d9fc8.22dea0e1-a4c5-4608-9638-9c67a0b3d486

RabbitMQ

bởi ATH Infosystems

(1 xếp loại)

Version 4.2.4 + Free Support on Ubuntu 24.04

RabbitMQ is a powerful open-source message broker designed to enable reliable communication between distributed applications. It implements the Advanced Message Queuing Protocol (AMQP) and allows systems to exchange data asynchronously, improving scalability, reliability, and performance.

Key Features of RabbitMQ:

  • Open-source message broker for asynchronous communication.
  • Supports AMQP and multiple messaging protocols.
  • Reliable message delivery with queues and acknowledgements.
  • Web-based management dashboard for monitoring and administration.
  • Scalable architecture suitable for microservices and distributed systems.

RabbitMQ Usage:


$ sudo su
$ systemctl enable rabbitmq-server
$ systemctl start rabbitmq-server
$ rabbitmq-plugins enable rabbitmq_management

To Access Web Interface:

http://your-ip:15672/

Create a New RabbitMQ User:


# Remove insecure guest user
sudo rabbitmqctl delete_user guest

# Create new admin user (change the password!)
sudo rabbitmqctl add_user admin YourVeryStrongPasswordHere2026!

# Tag as administrator (allows full UI access)
sudo rabbitmqctl set_user_tags admin administrator

# Grant full permissions on default vhost
sudo rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"

Disclaimer:
RabbitMQ is an open-source message broker maintained by its developer community. This content is provided for informational purposes only. We are not affiliated with or endorsed by RabbitMQ. All trademarks and product names belong to their respective owners.