Anudeep Sai
Anudeep Sai

Reputation: 133

Rabbit MQ support in Azure

I need to read and publish messages to a Rabbit MQ instance from multiple app services on Azure.

Could anyone please suggest the Azure service that I should be using to host the Rabbit MQ instance?

Upvotes: 9

Views: 19998

Answers (2)

robs
robs

Reputation: 940

Checkout RabbitMQ as a service on https://www.cloudamqp.com/

It's available on Azure, the free plan is somewhat restricted on regions but the paid plans are much better supported across Azure regions.

Upvotes: 7

Sajeetharan
Sajeetharan

Reputation: 222582

There is no Managed option available in Azure, you can consider installing in two ways,

  • Create individual Linux VM’s, Install RabbitMQ on it, Connect the RabbitMQ nodes installed in each VM.
  • Install RabbitMQ Cluster package provided by Bitnami in Azure.

Upvotes: 5

Related Questions