SQS vs RabbitMQ

For a start, Amazon SQS is a pseudo-queue which means the delivery of every message(if it reaches the queue) is guaranteed but not in a FIFO fashion which usually happens in a queue. If the order of messages is important to you and you want the queue to work in a FIFO fashion, the Amazon … Read more

RabbitMQ started but can’t access management interface

I think you should check a few things: the management plugin is not enabled by default, you need to run the below command to enable it: (see https://www.rabbitmq.com/management.html) Also this runs on port 15672 by default, it is possible the server/network is blocking this port. You will need to check that the port is open.

tech