9

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?

Mr.KoopaKiller
  • 3,665
  • 10
  • 21
Anudeep Sai
  • 123
  • 1
  • 2
  • 7

2 Answers2

6

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.

robs
  • 840
  • 10
  • 15
  • I should also mention that RabbitMQ is also available as a trigger on Azure functions – robs Dec 18 '20 at 06:39
5

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.
Sajeetharan
  • 216,225
  • 63
  • 350
  • 396